Skip to content

Commit

Permalink
Merge pull request #1505 from CaliOpen/master
Browse files Browse the repository at this point in the history
[frontend] Fix `release` command
  • Loading branch information
iamdey committed Mar 5, 2021
2 parents 993bd14 + fa4af74 commit 8f7c3fd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/frontend/web_application/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@
"start:api": "cd ../../../devtools/ && docker-compose up -d objectstore proxyapi lmtpd identitypoller && docker-compose restart proxyapi && sleep 10 && docker-compose ps",
"start:mock-api": "../../../devtools/api-mock/bin/start",
"build:clean": "if [ -d dist ];then rm -r dist;fi",
"build:browser:test": "NODE_ENV=production CALIOPEN_PIWIK_SITE_ID=false webpack -p --config webpack/webpack.config.browser.js",
"build:server:test": "NODE_ENV=production HAS_SSR=true webpack -p --config webpack/webpack.config.server.js",
"build:browser:test": "NODE_ENV=production CALIOPEN_PIWIK_SITE_ID=false webpack --mode production --config webpack/webpack.config.browser.js",
"build:server:test": "NODE_ENV=production HAS_SSR=true webpack --mode production --config webpack/webpack.config.server.js",
"build:i18n": "lingui compile",
"release": "npm-run-all build:i18n release:web:browser release:web:server",
"release:web:server": "NODE_ENV=production webpack --bail -p --progress --config webpack/webpack.config.server.js",
"release:web:browser": "NODE_ENV=production webpack --bail -p --progress --config webpack/webpack.config.browser.js",
"release:web:server": "NODE_ENV=production webpack --bail --mode production --progress --config webpack/webpack.config.server.js",
"release:web:browser": "NODE_ENV=production webpack --bail --mode production --progress --config webpack/webpack.config.browser.js",
"test": "npm-run-all lint test:unit",
"test:unit": "jest",
"test:unit:watch": "jest --watch",
Expand Down

0 comments on commit 8f7c3fd

Please sign in to comment.