Skip to content

Commit

Permalink
Bundle extension with webpack
Browse files Browse the repository at this point in the history
  • Loading branch information
PKief committed Mar 10, 2019
1 parent f21ca04 commit 6850337
Show file tree
Hide file tree
Showing 32 changed files with 3,410 additions and 172 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
out
dist

node_modules

.vscode-test/**
*.vsix

icons/folder.svg
icons/folder-open.svg
icons/folder-root.svg
Expand Down
6 changes: 2 additions & 4 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,9 @@
"--extensionDevelopmentPath=${workspaceFolder}"
],
"outFiles": [
"${workspaceFolder}/out/**/*.js"
"${workspaceFolder}/dist/**/*.js"
],
"smartStep": true,
"sourceMaps": true,
"preLaunchTask": "npm: build"
},
{
Expand All @@ -29,11 +28,10 @@
"--extensionDevelopmentPath=${workspaceFolder}",
"--extensionTestsPath=${workspaceFolder}/out/test"
],
"sourceMaps": true,
"outFiles": [
"${workspaceFolder}/out/test/**/*.js"
],
"preLaunchTask": "npm: build"
"preLaunchTask": "npm: test-compile"
}
]
}
6 changes: 3 additions & 3 deletions .vscodeignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
.vscode/**
.vscode-test/**
out/test/**
out/previews/**
out/**
test/**
src/**
scripts/**
Expand All @@ -15,4 +14,5 @@ images/**
vsc-extension-quickstart.md
logo.svg
package-lock.json
yarn.lock
yarn.lock
webpack.config.js
Loading

0 comments on commit 6850337

Please sign in to comment.