Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make vsix smaller #139

Draft
wants to merge 2 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ coverage/
.DS_Store
/npm-debug.log
/.nyc_output/
/dist/
6 changes: 3 additions & 3 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
"args": ["--extensionDevelopmentPath=${workspaceRoot}" ],
"stopOnEntry": false,
"sourceMaps": true,
"outFiles": [ "${workspaceRoot}/out/**/*.js" ],
"preLaunchTask": "npm: watch"
"outFiles": [ "${workspaceRoot}/dist/extension.js" ],
"preLaunchTask": "npm: webpack"
},
{
"name": "Launch Tests",
Expand All @@ -22,7 +22,7 @@
"stopOnEntry": false,
"sourceMaps": true,
"outFiles": [ "${workspaceRoot}/out/test/**/*.js" ],
"preLaunchTask": "npm: watch"
"preLaunchTask": "npm: compile"
}
]
}
8 changes: 8 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,14 @@
"kind": "build",
"isDefault": true
}
},
{
"type": "npm",
"script": "webpack-dev",
"problemMatcher": [
"$tsc-watch"
],
"isBackground": true
}
]
}
13 changes: 10 additions & 3 deletions .vscodeignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
.vscode/**
.vscode-test/**
out/test/**
out/**/*.map
out/**
src/**
.gitignore
tsconfig.json
Expand All @@ -10,4 +9,12 @@ vsc-extension-quickstart.md
appveyor.yml
coverconfig.json
publish_coverage.sh
.github/**
.github/**
.nyc_output/**
coverage/**
images/**
!images/icon.png
tslint.json
dist/**.map
node_modules/**
webpack.config.js
Loading