|
87 | 87 | "docs": "npm run build && npx runmd --output=README.md README_js.md",
|
88 | 88 | "eslint:check": "eslint src/ test/ examples/ *.[jt]s",
|
89 | 89 | "eslint:fix": "eslint --fix src/ test/ examples/ *.[jt]s",
|
90 |
| - "examples:browser:rollup:build": "cd examples/browser-rollup && npm install && npm run build", |
91 |
| - "examples:browser:webpack:build": "cd examples/browser-webpack && npm install && npm run build", |
92 |
| - "examples:node:commonjs:test": "cd examples/node-commonjs && npm install && npm test", |
93 |
| - "examples:node:esmodules:test": "cd examples/node-esmodules && npm install && npm test", |
94 |
| - "examples:node:jest:test": "cd examples/node-jest && npm install && npm test", |
| 90 | + "examples:browser:rollup:build": "cd examples/browser-rollup && npm run build", |
| 91 | + "examples:browser:webpack:build": "cd examples/browser-webpack && npm run build", |
| 92 | + "examples:node:commonjs:test": "cd examples/node-commonjs && npm test", |
| 93 | + "examples:node:esmodules:test": "cd examples/node-esmodules && npm test", |
| 94 | + "examples:node:jest:test": "cd examples/node-jest && npm test", |
95 | 95 | "lint": "npm run eslint:check && npm run prettier:check",
|
96 | 96 | "md": "runmd --watch --output=README.md README_js.md",
|
97 |
| - "prepack": "npm run build", |
| 97 | + "prepack": "npm run build -- --no-pack", |
98 | 98 | "prepare": "husky",
|
| 99 | + "prepublishOnly": "npm run build", |
99 | 100 | "pretest:benchmark": "npm run build",
|
100 | 101 | "pretest:browser": "./scripts/iodd && npm run build && npm-run-all --parallel examples:browser:**",
|
101 | 102 | "pretest:node": "npm run build",
|
102 | 103 | "pretest": "npm run build",
|
103 | 104 | "prettier:check": "prettier --check .",
|
104 | 105 | "prettier:fix": "prettier --write .",
|
105 | 106 | "release": "standard-version --no-verify",
|
106 |
| - "test:benchmark": "cd examples/benchmark && HUSKY=0 npm install && npm test", |
| 107 | + "test:benchmark": "cd examples/benchmark && npm test", |
107 | 108 | "test:browser": "wdio run ./wdio.conf.js",
|
108 | 109 | "test:node": "npm-run-all --parallel examples:node:**",
|
109 |
| - "test:pack": "./scripts/testpack.sh", |
110 | 110 | "test:watch": "node --test --enable-source-maps --watch dist/esm/test/*.js",
|
111 | 111 | "test": "node --test --enable-source-maps dist/esm/test/*.js"
|
112 | 112 | },
|
|
0 commit comments