Merge pull request #462 from viktomas/fix-missing-out
Fix issues with missing out directory
This commit is contained in:
commit
41ef704b57
1 changed files with 5 additions and 4 deletions
|
@ -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": {
|
||||
|
|
Loading…
Add table
Reference in a new issue