Skip to content

Commit

Permalink
Reorder npm build scripts a little
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianmroz-allegro committed Oct 22, 2020
1 parent d936fe3 commit 84e504b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,16 +47,16 @@
"test-watcher": "mocha --require ./test/setup/mocha.js --watch --watch-extensions ts,tsx",
"start": "./bin/turnilo",
"start:dev": "NODE_ENV=dev-hmr ./bin/turnilo",
"build": "npm run clean && npm run tsc -- -p src/server/tsconfig.json && webpack --config config/webpack.prod.js",
"build:dev": "npm run clean && npm run tsc -- -p src/server/tsconfig.json",
"dev": "npm run clean && npm run tsc -- -p tsconfig.json -w --pretty",
"start:examples": "npm run start -- --examples",
"start:dev:examples": "npm run start:dev -- --examples",
"build:client": "webpack --config config/webpack.prod.js",
"build:server": "npm run tsc -- -p src/server/tsconfig.json ",
"build": "npm-run-all -s clean build:server build:client",
"clean": "rimraf build/*",
"tsc": "tsc",
"lint": "npm-run-all -p lint:*",
"lint:ts": "tslint -p . --format verbose",
"lint:sass": "sass-lint -v",
"start:examples": "npm run start -- --examples",
"start:dev:examples": "npm run start:dev -- --examples",
"e2e": "start-server-and-test start:examples http://localhost:9090/health/ready 'cypress run'",
"e2e:dev": "cypress open",
"check": "npm-run-all -c -p lint test build e2e"
Expand Down

0 comments on commit 84e504b

Please sign in to comment.