Skip to content

Commit 6122491

Browse files
committed
snap: package updates
1 parent 4a7565b commit 6122491

File tree

5 files changed

+13
-10
lines changed

5 files changed

+13
-10
lines changed

genScripts.js

-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ const webClientDeps = [
2626

2727
const codePluginDeps = [
2828
DEPENDENCIES.COMMON_ALL,
29-
DEPENDENCIES.COMMON_CLIENT,
3029
DEPENDENCIES.COMMON_SERVER,
3130
DEPENDENCIES.ENGINE_SERVER,
3231
DEPENDENCIES.PLUGIN_CORE,

packages/common-all/package.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,11 @@
2828
"lint": "",
2929
"prepublishOnly": "npm run build",
3030
"prebuild": "npm run clean && npm run format && npm run lint && echo Using TypeScript && tsc --version",
31-
"build": "tsc -p tsconfig.build.json",
31+
"build": "npm run compile",
32+
"compile": "tsc -p tsconfig.build.json",
3233
"test": "jest",
3334
"coverage": "jest --coverage",
34-
"watch": "npm run build -- --watch",
35+
"watch": "npm run compile -- --watch",
3536
"test:watch": "jest --watch"
3637
},
3738
"dependencies": {

packages/common-server/package.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,11 @@
2828
"lint": "",
2929
"prepublishOnly": "npm run build",
3030
"prebuild": "npm run clean && npm run format && npm run lint && echo Using TypeScript && tsc --version",
31-
"build": "tsc -p tsconfig.build.json",
31+
"build": "npm run compile",
32+
"compile": "tsc -p tsconfig.build.json",
3233
"test": "jest",
3334
"coverage": "jest --coverage",
34-
"watch": "npm run build -- --watch",
35+
"watch": "npm run compile -- --watch",
3536
"test:watch": "jest --watch"
3637
},
3738
"dependencies": {

packages/engine-server/package.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,12 @@
2828
"lint": "",
2929
"prepublishOnly": "npm run build",
3030
"prebuild": "npm run clean && npm run format && npm run lint && echo Using TypeScript && tsc --version",
31-
"build": "tsc -p tsconfig.build.json",
31+
"build": "npm run compile",
32+
"compile": "tsc -p tsconfig.build.json",
3233
"test": "jest",
3334
"test:unit:all": "cross-env LOG_LEVEL=error yarn test",
3435
"coverage": "jest --coverage",
35-
"watch": "npm run build -- --watch",
36+
"watch": "npm run compile -- --watch",
3637
"watch:test": "jest --watch"
3738
},
3839
"dependencies": {

packages/plugin-core/package.json

+4-3
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,11 @@
4040
"scripts": {
4141
"vscode:prepublish": "npm run build",
4242
"lint": "eslint src --ext ts",
43-
"watch": "npm run build -- --watch",
43+
"watch": "npm run compile -- --watch",
44+
"build": "npm run compile",
45+
"compile": "tsc -p tsconfig.build.json",
4446
"pretest": "npm run build && yarn run lint",
45-
"test": "node ./out/test/runTest.js",
46-
"build": "tsc -p tsconfig.build.json"
47+
"test": "node ./out/test/runTest.js"
4748
},
4849
"devDependencies": {
4950
"@types/glob": "^7.1.1",

0 commit comments

Comments
 (0)