Skip to content

Commit c85e3e2

Browse files
committed
Fix CI
1 parent d4665ff commit c85e3e2

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

examples/typescript/package.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,14 @@
55
"main": "./src/index.ts",
66
"scripts": {
77
"build": "npx webpack --config webpack.dev.js",
8+
"build-dev": "npm run build",
89
"build-prod": "npx webpack --config webpack.prod.js",
910
"watch": "npx webpack --watch",
1011
"start": "npx webpack && open-cli ./dist/index.html",
1112
"serve": "webpack serve --config webpack.dev.js",
1213
"serve-prod": "webpack serve --config webpack.prod.js",
1314
"build-all": "cd ../../library && npm install && npm run build && cd ../examples/typescript && npm run build",
15+
"build-all-dev": "npm run build-all",
1416
"build-all-prod": "cd ../../library && npm install && npm run build-prod && cd ../examples/typescript && npm run build-prod"
1517
},
1618
"author": "TensorWorks Pty Ltd",

library/package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@
88
"scripts": {
99
"build:cjs": "tsc --project tsconfig.cjs.json",
1010
"build:esm": "tsc --project tsconfig.esm.json",
11-
"build": "npm run build:cjs && npm run build:esm"
11+
"build": "npm run build:cjs && npm run build:esm",
12+
"build-dev": "npm run build",
13+
"build-prod": "npm run build"
1214
},
1315
"author": "TensorWorks Pty Ltd",
1416
"license": "MIT",

0 commit comments

Comments
 (0)