Skip to content

Commit

Permalink
chrome(seriesci): fix bundlesize generation
Browse files Browse the repository at this point in the history
  • Loading branch information
kopach committed Jun 23, 2020
1 parent 48a101e commit 6bf0e93
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
],
"scripts": {
"adr:update": "adr update",
"prebuild": "npm run prepareDist",
"prebuild": "rimraf dist && npm run generate-public-api-schema",
"build": "tsc --sourceMap false",
"build:watch": "concurrently --kill-others --prefix '{name}:' --names 'TS,MODEL' --prefix-colors 'magenta,blue' \"npm run build -- --watch\" \"npm run generate-public-api-schema:watch\"",
"generate-public-api-schema": "make-dir dist && typescript-json-schema src/model.ts PublicAPI --out dist/public_api.schema.json",
Expand All @@ -27,13 +27,12 @@
"lint-package.json": "prettier-package-json --write",
"lint:fix": "npm run lint -- --fix",
"prepare": "npm run snyk-protect",
"prepareDist": "rimraf dist && npm run generate-public-api-schema",
"prepublishOnly": "npm run build",
"release": "np --no-2fa",
"postshrinkwrap": "lockfix",
"snyk-protect": "snyk protect",
"tdd": "concurrently --kill-others \"npm run test:watch\" \"live-server --watch=coverage/lcov-report --open=coverage/lcov-report --quiet\"",
"pretest": "npm run prepareDist",
"pretest": "npm run generate-public-api-schema",
"test": "nyc mocha --exit --require ts-node/register **/*.ts",
"test:ci": "npm run test",
"posttest:ci": "codecov",
Expand Down

0 comments on commit 6bf0e93

Please sign in to comment.