Skip to content

Commit

Permalink
fix extension output to dist
Browse files Browse the repository at this point in the history
  • Loading branch information
elazarcoh committed Sep 30, 2021
1 parent 80e6170 commit e777c03
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .vscodeignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
.vscode/**
.vscode-test/**
out/test/**
node_modules/**
out/**
src/**
.gitignore
.yarnrc
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"activationEvents": [
"*"
],
"main": "./out/extension.js",
"main": "./dist/extension.js",
"contributes": {
"configuration": {
"title": "nvidia-smi+",
Expand Down Expand Up @@ -195,4 +195,4 @@
"fast-xml-parser": "^3.19.0",
"vscode-extensions-json-generator": "^0.1.1"
}
}
}
2 changes: 1 addition & 1 deletion webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const config = {

entry: "./src/extension.ts",
output: {
path: path.resolve(__dirname, "out"),
path: path.resolve(__dirname, "dist"),
filename: "extension.js",
libraryTarget: "commonjs2",
devtoolModuleFilenameTemplate: "../[resource-path]",
Expand Down

0 comments on commit e777c03

Please sign in to comment.