Skip to content
This repository was archived by the owner on Aug 24, 2018. It is now read-only.

Commit ad07c07

Browse files
committed
first release
1 parent 9f3c670 commit ad07c07

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

.babelrc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"presets": [
3+
"es2015"
4+
]
5+
}

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
.idea
2+
dist
3+
lib
4+
node_modules
25
spec/example-wcs/output
3-
node_modules

package.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
{
22
"name": "web-components-loader",
3-
"version": "0.1.0-2",
3+
"version": "0.1.1",
44
"description": "Easily load web components into a project using Webpack.",
55
"main": "lib/index.js",
66
"scripts": {
7+
"build": "mkdir -p lib; babel src/index.js -o lib/index.js",
8+
"release": "rm -rf dist; mkdir dist; cp -pR src lib package.json LICENSE README.md dist/; (cd dist; npm publish)",
79
"test": "jasmine"
810
},
911
"homepage": "https://github.com/FineUploader/react-web-components-loader#readme",
@@ -32,6 +34,9 @@
3234
"xmldom": "0.1.24"
3335
},
3436
"devDependencies": {
37+
"babel-cli": "6.18.0",
38+
"babel-core": "6.18.2",
39+
"babel-preset-es2015": "6.18.0",
3540
"del": "2.2.2",
3641
"jasmine": "2.5.2"
3742
}

0 commit comments

Comments
 (0)