Skip to content

Commit

Permalink
Use yarn instead of directly node.js for building spacewalk-web
Browse files Browse the repository at this point in the history
  • Loading branch information
Luis Neves committed Mar 23, 2019
1 parent 34cea18 commit 1af151b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions web/html/src/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
"watch": "webpack -d --config build/webpack.config.js --mode development --watch",
"proxy": "webpack-dev-server -d --mode development --hot --inline --config build/webpack.config.js",
"build": "node build",
"build:novalidate": "BUILD_VALIDATION=false node build",
"lint": "eslint . -f codeframe"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion web/setup.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
set -euxo pipefail
(cd web/html/src; yarn install --frozen-lockfile)
(cd web/html/src; BUILD_VALIDATION=false node build.js)
(cd web/html/src; yarn build:novalidate)
echo ""

0 comments on commit 1af151b

Please sign in to comment.