We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dff2fc8 commit b27aab9Copy full SHA for b27aab9
2 files changed
.gitignore
@@ -1 +1,2 @@
1
+lib
2
node_modules
package.json
@@ -2,7 +2,7 @@
"name": "immutable-proxy",
3
"version": "0.0.1",
4
"description": "access immutable values more easily",
5
- "main": "index.js",
+ "main": "lib/index.js",
6
"peerDependencies": {
7
"immutable": "^3.7.6"
8
},
@@ -19,7 +19,7 @@
19
20
"scripts": {
21
"test": "mocha tests --compilers js:babel-register --recursive --harmony_shipping ",
22
- "build": "babel src/index.js --out-file index.js && npm run build-umd && npm run build-min",
+ "build": "babel src -d lib && npm run build-umd && npm run build-min",
23
"build-umd": "NODE_ENV=production webpack src/index.js umd/index.js",
24
"build-min": "NODE_ENV=production webpack -p src/index.js umd/index.min.js"
25
0 commit comments