Skip to content

Commit 98d2f4b

Browse files
authored
fix: add missing command to deploy script (#305)
1 parent 90e6ba9 commit 98d2f4b

2 files changed

Lines changed: 4 additions & 6 deletions

File tree

package-lock.json

Lines changed: 2 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,10 @@
1616
"build:lint:fix": "eslint --fix 'src/**' --ext .js,.jsx --env browser,node",
1717
"build:lint": "eslint 'src/**' --ext .js,.jsx --env browser,node",
1818
"build": "rm -rf dist && NODE_ENV=production babel src --out-dir dist --ignore \"src/**/*.spec.js\",\"src/**/*.test.js\",\"src/**/*.Component.js\",\"src/_playground/*\"",
19-
"deploy": "gh-pages -d build",
19+
"deploy": "npm run build-doc && gh-pages -d build",
2020
"lint:fix": "npm run build:lint:fix",
2121
"lint:pre-commit": "printf \"running pre-commit lint...\" && npm run lint && printf \"done!\n\"",
2222
"lint": "npm run build:lint",
23-
"predeploy": "npm run build",
2423
"release": "./ci-scripts/publish_release.sh",
2524
"size": "npm run build && size-limit",
2625
"size:debug": "npm run build && size-limit --why",
@@ -34,6 +33,7 @@
3433
"watch-css": "npm run build-css && node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/ --watch --recursive"
3534
},
3635
"dependencies": {
36+
"annotated-prop-types": "^0.3.0",
3737
"classnames": "^2.2.6",
3838
"fiori-fundamentals": "^1.4.0",
3939
"react-router": "^4.3.1",
@@ -45,7 +45,6 @@
4545
"@babel/core": "7.1.0",
4646
"@babel/polyfill": "^7.1.5",
4747
"@svgr/webpack": "2.4.1",
48-
"annotated-prop-types": "^0.3.0",
4948
"babel-core": "7.0.0-bridge.0",
5049
"babel-eslint": "9.0.0",
5150
"babel-jest": "23.6.0",

0 commit comments

Comments
 (0)