Merge pull request #462 from viktomas/fix-missing-out

Fix issues with missing out directory
This commit is contained in:
João Moreno 2020-06-26 16:03:28 +02:00 committed by GitHub
commit 41ef704b57
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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": {