|
165 | 165 | "example": "./examples"
|
166 | 166 | },
|
167 | 167 | "scripts": {
|
168 |
| - "dev-setup": "npm i && run-p --aggregate-output -lc dev-setup:*", |
169 |
| - "dev-setup:code-style": "npm --prefix tools/code-style install", |
| 168 | + "dev-setup": "npm i && run-p --aggregate-output -lc dev-setup:\\*", |
170 | 169 | "dev-setup:docs-gen": "npm --prefix tools/docs-gen install",
|
| 170 | + "dev-setup:code-style": "npm --prefix tools/code-style install", |
| 171 | + "dev-setup:examples": "run-p --aggregate-output -lc dev-setup:examples:\\*", |
| 172 | + "dev-setup:examples:js": "npm --prefix examples/node/javascript i --ignore-scripts", |
| 173 | + "dev-setup:examples:ts-cjs": "npm --prefix examples/node/typescript/example.cjs i --ignore-scripts", |
| 174 | + "dev-setup:examples:ts-mjs": "npm --prefix examples/node/typescript/example.mjs i --ignore-scripts", |
171 | 175 | "prepublish": "npm run build",
|
172 | 176 | "prepublishOnly": "run-s -lc build test",
|
173 |
| - "build": "run-p --aggregate-output -l build:*", |
| 177 | + "build": "run-p --aggregate-output -l build:\\*", |
174 | 178 | "prebuild:node": "rimraf dist.node",
|
175 | 179 | "build:node": "tsc -b ./tsconfig.node.json",
|
176 | 180 | "prebuild:web": "rimraf dist.web",
|
177 | 181 | "build:web": "webpack build",
|
178 | 182 | "prebuild:d": "rimraf dist.d",
|
179 | 183 | "build:d": "tsc -b ./tsconfig.d.json",
|
180 |
| - "test": "run-p --aggregate-output -lc test:*", |
| 184 | + "test": "run-p --aggregate-output -lc test:\\*", |
181 | 185 | "test:node": "c8 mocha -p",
|
182 | 186 | "test:web": "node -e 'console.log(\"TODO: write web test\")'",
|
183 | 187 | "test:lint": "tsc --noEmit",
|
|
0 commit comments