react-image-annotate-master-custom 0.0.32 → 0.0.34

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.
Files changed (1) hide show
  1. package/package.json +10 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-image-annotate-master-custom",
3
- "version": "0.0.32",
3
+ "version": "0.0.34",
4
4
  "dependencies": {
5
5
  "@fortawesome/fontawesome-svg-core": "^1.2.12",
6
6
  "@fortawesome/free-solid-svg-icons": "^5.6.3",
@@ -50,13 +50,19 @@
50
50
  "start": "react-scripts start",
51
51
  "test": "react-scripts test",
52
52
  "eject": "react-scripts eject",
53
+
53
54
  "storybook": "start-storybook -p 9090 -s public",
54
- "build": "npm run build:babel && copyfiles -f package.json README.md dist",
55
- "build:babel": "rimraf dist && cross-env NODE_ENV=production babel ./src --ignore \"src/**/*.story.js\" --out-dir=./dist",
55
+
56
+ "build": "npm run build:babel && copyfiles package.json README.md dist",
56
57
  "dist": "npm run build && cd dist && npm publish",
58
+
59
+ "build:babel": "rimraf dist && cross-env NODE_ENV=production babel ./src --ignore \"src/**/*.story.js\" --out-dir=./dist",
60
+
57
61
  "build-storybook": "build-storybook",
58
- "build:gh-pages": "CI=false react-scripts build && mkdirp build/demo && copyfiles -f build/index.html build/demo",
62
+
63
+ "build:gh-pages": "CI=false react-scripts build && npx shx mkdir -p build/demo && copyfiles build/index.html build/demo",
59
64
  "gh-pages": "npm run build:gh-pages && gh-pages -d build",
65
+
60
66
  "prettier": "prettier --write \"src/**/*.js\"",
61
67
  "prettier:test": "prettier --check \"src/**/*.js\""
62
68
  },