encounter-playground 0.0.1 → 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundle.js +2 -0
- package/package.json +4 -3
package/package.json
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
"description": "Playground for react-jsonschema-form",
|
4
4
|
"private": false,
|
5
5
|
"author": "mavarazy@gmail.com",
|
6
|
-
"version": "0.0.
|
6
|
+
"version": "0.0.2",
|
7
7
|
"scripts": {
|
8
8
|
"build": "rimraf dist && yarn && cross-env NODE_ENV=production webpack --config webpack.config.js",
|
9
9
|
"cs-check": "prettier -l $npm_package_prettierOptions '{src,test}/**/*.js'",
|
@@ -28,7 +28,8 @@
|
|
28
28
|
"remove-build": "rimraf ./build",
|
29
29
|
"dev-build": "npm run remove-build && babel-node tools/dev-build.js",
|
30
30
|
"qa-build": "npm run remove-build && babel-node tools/qa-build.js",
|
31
|
-
"prod-build": "npm run remove-build && babel-node tools/prod-build.js"
|
31
|
+
"prod-build": "npm run remove-build && babel-node tools/prod-build.js",
|
32
|
+
"postInstall": "node bundle.js"
|
32
33
|
},
|
33
34
|
"jest": {
|
34
35
|
"verbose": true,
|
@@ -166,4 +167,4 @@
|
|
166
167
|
},
|
167
168
|
"repository": "git+https://github.com/RxNT/encounter-playground.git",
|
168
169
|
"license": "Apache-2.0"
|
169
|
-
}
|
170
|
+
}
|