Skip to content
This repository has been archived by the owner on Nov 16, 2023. It is now read-only.

Commit

Permalink
Fix "Missing module" #178
Browse files Browse the repository at this point in the history
- Do not use yarn when making the VSIX
  • Loading branch information
joechung-msft committed Oct 7, 2020
1 parent e973476 commit 9262e7b
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 7 deletions.
4 changes: 4 additions & 0 deletions NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,7 @@ You must not have any open instances of Visual Studio Code before running tests.
### Command to run tests

`npm run test`

## Packaging code

`npm run package`
18 changes: 13 additions & 5 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "vscode-logicapps",
"displayName": "Azure Logic Apps",
"description": "%extension.description%",
"version": "0.2.53",
"version": "0.2.53.1",
"publisher": "ms-azuretools",
"icon": "resources/azLogicApps.png",
"aiKey": "b6385546-3be0-489c-a298-baccd6c152fb",
Expand Down Expand Up @@ -730,6 +730,7 @@
"compile": "webpack --mode production",
"lint": "eslint --ext .ts src",
"lint-fix": "eslint --ext .ts --fix src",
"package": "vsce package --no-yarn",
"test": "npm run compile && node ./src/test/runTest.js",
"vscode:prepublish": "npm run compile",
"watch": "webpack --mode development --watch",
Expand All @@ -754,7 +755,7 @@
"serialize-javascript": "^5.0.1",
"ts-loader": "^8.0.4",
"typescript": "^4.0.3",
"vsce": "^1.81.0",
"vsce": "^1.81.1",
"vscode-test": "^1.4.0",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12"
Expand Down

0 comments on commit 9262e7b

Please sign in to comment.