Skip to content

Commit 0c51764

Browse files
committed
fix launcher
1 parent f4a3d0d commit 0c51764

File tree

2 files changed

+1263
-17
lines changed

2 files changed

+1263
-17
lines changed

package.json

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@
2424
"vsce": "out/vsce"
2525
},
2626
"scripts": {
27-
"compile": "tsc",
28-
"watch": "tsc --watch",
29-
"watch-test": "concurrently \"tsc --watch\" \"mocha --watch\"",
30-
"test": "tsc && mocha",
31-
"prepublishOnly": "tsc && mocha"
27+
"compile": "concurrently \"tsc\" \"cpx src/vsce out\"",
28+
"watch": "concurrently \"tsc --watch\" \"cpx --watch src/vsce out\"",
29+
"watch-test": "concurrently \"tsc --watch\" \"cpx --watch src/vsce out\" \"mocha --watch\"",
30+
"test": "concurrently \"tsc\" \"cpx src/vsce out\" && mocha",
31+
"prepublishOnly": "concurrently \"tsc\" \"cpx src/vsce out\" && mocha"
3232
},
3333
"engines": {
3434
"node": ">= 8"
@@ -37,6 +37,7 @@
3737
"chalk": "^2.4.2",
3838
"cheerio": "^1.0.0-rc.1",
3939
"commander": "^2.8.1",
40+
"cpx": "^1.5.0",
4041
"denodeify": "^1.2.1",
4142
"glob": "^7.0.6",
4243
"lodash": "^4.17.10",
@@ -74,4 +75,4 @@
7475
"typescript": "^3.4.3",
7576
"xml2js": "^0.4.12"
7677
}
77-
}
78+
}

0 commit comments

Comments
 (0)