Skip to content

Commit

Permalink
config: added extension bundling to reduce extension size
Browse files Browse the repository at this point in the history
  • Loading branch information
tranhl committed Apr 19, 2020
1 parent 9330609 commit ff2c634
Show file tree
Hide file tree
Showing 6 changed files with 4,628 additions and 68 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
dist
out
node_modules
.vscode-test/
Expand Down
4 changes: 2 additions & 2 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"outFiles": [
"${workspaceFolder}/out/**/*.js"
],
"preLaunchTask": "npm: watch"
"preLaunchTask": "npm: webpack"
},
{
"name": "Extension Tests",
Expand All @@ -30,7 +30,7 @@
"outFiles": [
"${workspaceFolder}/out/test/**/*.js"
],
"preLaunchTask": "npm: watch"
"preLaunchTask": "npm: webpack"
}
]
}
17 changes: 9 additions & 8 deletions .vscodeignore
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
.vscode/**
.vscode-test/**
out/test/**
out/**/*.map
src/**
.history
.vscode
node_modules
src
.gitattributes
.gitignore
webpack.config.js
package-lock.json
tsconfig.json
vsc-extension-quickstart.md
tslint.json
.history/**
.vscodeignore
*.vsix
Loading

0 comments on commit ff2c634

Please sign in to comment.