File tree 5 files changed +13
-10
lines changed
5 files changed +13
-10
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,6 @@ const webClientDeps = [
26
26
27
27
const codePluginDeps = [
28
28
DEPENDENCIES . COMMON_ALL ,
29
- DEPENDENCIES . COMMON_CLIENT ,
30
29
DEPENDENCIES . COMMON_SERVER ,
31
30
DEPENDENCIES . ENGINE_SERVER ,
32
31
DEPENDENCIES . PLUGIN_CORE ,
Original file line number Diff line number Diff line change 28
28
"lint" : " " ,
29
29
"prepublishOnly" : " npm run build" ,
30
30
"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" ,
32
33
"test" : " jest" ,
33
34
"coverage" : " jest --coverage" ,
34
- "watch" : " npm run build -- --watch" ,
35
+ "watch" : " npm run compile -- --watch" ,
35
36
"test:watch" : " jest --watch"
36
37
},
37
38
"dependencies" : {
Original file line number Diff line number Diff line change 28
28
"lint" : " " ,
29
29
"prepublishOnly" : " npm run build" ,
30
30
"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" ,
32
33
"test" : " jest" ,
33
34
"coverage" : " jest --coverage" ,
34
- "watch" : " npm run build -- --watch" ,
35
+ "watch" : " npm run compile -- --watch" ,
35
36
"test:watch" : " jest --watch"
36
37
},
37
38
"dependencies" : {
Original file line number Diff line number Diff line change 28
28
"lint" : " " ,
29
29
"prepublishOnly" : " npm run build" ,
30
30
"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" ,
32
33
"test" : " jest" ,
33
34
"test:unit:all" : " cross-env LOG_LEVEL=error yarn test" ,
34
35
"coverage" : " jest --coverage" ,
35
- "watch" : " npm run build -- --watch" ,
36
+ "watch" : " npm run compile -- --watch" ,
36
37
"watch:test" : " jest --watch"
37
38
},
38
39
"dependencies" : {
Original file line number Diff line number Diff line change 40
40
"scripts" : {
41
41
"vscode:prepublish" : " npm run build" ,
42
42
"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" ,
44
46
"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"
47
48
},
48
49
"devDependencies" : {
49
50
"@types/glob" : " ^7.1.1" ,
You can’t perform that action at this time.
0 commit comments