Skip to content

Commit

Permalink
geosolutions-it#6424 fix project creation scripts (geosolutions-it#6435)
Browse files Browse the repository at this point in the history
  • Loading branch information
MV88 authored Jan 20, 2021
1 parent 690a2cd commit 8f4b350
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@
"i18n": "node utility/translations/findMissingTranslations.js",
"postinstall": "node utility/build/postInstall.js",
"clean": "rimraf ./web/client/dist",
"compile": "npm run clean && mkdirp ./web/client/dist && node --max_old_space_size=3096 ./node_modules/webpack/bin/webpack.js --progress --color --config build/prod-webpack.config.js",
"compile": "npm run clean && mkdirp ./web/client/dist && node --max_old_space_size=3072 ./node_modules/webpack/bin/webpack.js --progress --color --config build/prod-webpack.config.js",
"analyze": "npm run clean && mkdirp ./web/client/dist && webpack --json --config build/prod-webpack.config.js | webpack-bundle-size-analyzer",
"start": "webpack serve --progress --color --port 8081 --hot --inline --config build/webpack.config.js --content-base web/client",
"startprod": "webpack serve --progress --color --port 8081 --hot --inline --content-base web/client --config build/prod-webpack.config.js",
Expand Down
8 changes: 4 additions & 4 deletions utility/projects/projectScripts.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"postinstall": "node MapStore2/utility/build/postInstall.js",
"clean": "rimraf dist",
"compile": "npm run clean && mkdirp ./dist && node --max_old_space_size=3072 ./node_modules/webpack/bin/webpack.js --config prod-webpack.config.js",
"start": "webpack serve --progress --color --port 8081 --hot=only --inline --content-base .",
"test": "karma start ./karma.conf.single-run.js",
"continuoustest": "karma start ./karma.conf.continuous-test.js",
"compile": "npm run clean && mkdirp ./dist && node --max_old_space_size=3072 ./node_modules/webpack/bin/webpack.js --color --config prod-webpack.config.js",
"start": "webpack serve --progress --color --port 8081 --hot --inline --content-base .",
"test": "karma start ./karma.conf.single-run.js --color",
"continuoustest": "karma start ./karma.conf.continuous-test.js --color",
"mvntest": "karma start ./karma.conf.single-run.js --reporters junit,dots,coverage",
"lint": "eslint js --ext .jsx,.js",
"travis": "eslint js --ext .jsx,.js && karma start ./karma.conf.single-run.js --browsers FirefoxHeadless --reporters dots,junit,coverage,coveralls",
Expand Down

0 comments on commit 8f4b350

Please sign in to comment.