Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Moved es-check to build script #442

Merged
merged 2 commits into from
Apr 28, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"dev": "rimraf dist && rollup -c --watch",
"start": "npm run dev",
"docs": "typedoc --options ./typedoc.js --module commonjs",
"build": "rimraf dist && rollup -m -c --environment NODE_ENV:production",
"build": "rimraf dist && rollup -m -c --environment NODE_ENV:production && npm run test:es-check",
"build:stats": "npm run build -- --environment WITH_STATS:true && open stats.html",
"lint:security": "eslint ./src --ext ts --no-eslintrc --config ./.eslintrc.security",
"test": "jest --coverage",
Expand All @@ -24,7 +24,7 @@
"test:integration:tests": "wait-on http://localhost:3000/ && cypress run",
"test:integration": "concurrently --raw --kill-others --success first npm:test:integration:server npm:test:integration:tests",
"print-bundle-size": "node ./scripts/print-bundle-size",
"prepack": "npm run build && npm run test:es-check && npm run test && node ./scripts/prepack",
"prepack": "npm run build && npm run test && node ./scripts/prepack",
"release": "node ./scripts/release",
"release:clean": "node ./scripts/cleanup",
"publish:cdn": "ccu --trace"
Expand Down