Skip to content

Commit

Permalink
Added pnpm support. Sloppy and incomplete. Unsure of what to do
Browse files Browse the repository at this point in the history
with the symlinks without modifying the project.

microsoft#421
  • Loading branch information
empathicqubit committed Sep 5, 2020
1 parent 5ade7bf commit f2c83c1
Show file tree
Hide file tree
Showing 7 changed files with 1,445 additions and 25 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@
},
"scripts": {
"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\"",
"compile": "tsc && npm run copy-vsce",
"watch": "npm run copy-vsce && tsc --watch",
"watch-test": "npm run copy-vsce && concurrently \"tsc --watch\" \"mocha --watch\"",
"test": "mocha",
"prepublishOnly": "tsc && yarn copy-vsce && mocha",
"prepublishOnly": "tsc && npm run copy-vsce && mocha",
"vsce": "out/vsce"
},
"engines": {
Expand Down
Loading

0 comments on commit f2c83c1

Please sign in to comment.