cicd changes, fixing build bug
package-lock.json
deleted
100644 → 0
This diff is collapsed.
... | ... | @@ -10,10 +10,10 @@ |
"preweb": "npx shx rm -rf ./web", | ||
"web": "webpack", | ||
"postweb": "tsc --outDir web --declaration --emitDeclarationOnly", | ||
"build": "npm run node && npm run web", | ||
"build": "yarn run node && yarn run web", | ||
"dev": "tsc --watch", | ||
"docs": "npx typedoc", | ||
"prepublishOnly": "npm run build && npm run docs", | ||
"prepublishOnly": "yarn run build && yarn run docs", | ||
"test": "cross-env TS_NODE_COMPILER_OPTIONS={\\\"module\\\":\\\"commonjs\\\"} mocha -r ts-node/register 'tests/**/*.test.ts'", | ||
"qjs": "npx shx rm -rf ./qjs && tsc -p tsconfig.qjs.json && npx shx rm ./qjs/types.js && npx shx mv qjs/index.qjs.js qjs/index.js && node qjs-compile.js && npx shx mkdir qjs/lib && npx shx cp src/configurations/quickjs/lib/* qjs/lib/" | ||
}, | ||
... | ... | @@ -35,6 +35,7 @@ |
"url": "^0.11.0", | ||
"webpack": "4", | ||
"websocket": "^1.0.34", | ||
"shx": "^0.3.3", | ||
"ws": "^8.5.0" | ||
}, | ||
"devDependencies": { | ||
... | ... | @@ -43,7 +44,6 @@ |
"awesome-typescript-loader": "^5.2.1", | ||
"cross-env": "^7.0.3", | ||
"mocha": "^8.2.1", | ||
"shx": "^0.3.3", | ||
"ts-node": "^9.1.1", | ||
"typedoc": "^0.20.36", | ||
"webpack-cli": "^4.6.0" | ||
... | ... |
Please register or sign in to comment