Fix issues with missing out directory

This commit is contained in:
Tomas Vik 2020-06-26 14:29:29 +02:00 committed by Tomas Vik
parent 96e7e42bb4
commit b57d6a60a0

View file

@ -24,11 +24,12 @@
"vsce": "out/vsce"
},
"scripts": {
"compile": "tsc && cp src/vsce out/vsce",
"watch": "cp src/vsce out/vsce && tsc --watch",
"watch-test": "cp src/vsce out/vsce && concurrently \"tsc --watch\" \"mocha --watch\"",
"copy-vsce": "mkdir -p out && cp src/vsce out/vsce",
"compile": "tsc && yarn copy-vsce",
"watch": "yarn copy-vsce && tsc --watch",
"watch-test": "yarn copy-vsce && concurrently \"tsc --watch\" \"mocha --watch\"",
"test": "mocha",
"prepublishOnly": "tsc && cp src/vsce out/vsce && mocha",
"prepublishOnly": "tsc && yarn copy-vsce && mocha",
"vsce": "out/vsce"
},
"engines": {