Skip to content

Commit

Permalink
Merge pull request #11 from AssisrMatheus/webpack
Browse files Browse the repository at this point in the history
📦 Adds webpack
  • Loading branch information
AssisrMatheus authored Nov 13, 2020
2 parents 31d2acd + baa6a31 commit 70a6430
Show file tree
Hide file tree
Showing 7 changed files with 1,065 additions and 17 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ Thumbs.db
node_modules/
out/
.vs/
dist
4 changes: 2 additions & 2 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"--extensionDevelopmentPath=${workspaceFolder}"
],
"outFiles": [
"${workspaceFolder}/out/**/*.js"
"${workspaceFolder}/dist/**/*.js"
],
"preLaunchTask": "${defaultBuildTask}"
},
Expand All @@ -26,7 +26,7 @@
"--extensionTestsPath=${workspaceFolder}/out/test/suite/index"
],
"outFiles": [
"${workspaceFolder}/out/test/**/*.js"
"${workspaceFolder}/dist/test/**/*.js"
],
"preLaunchTask": "${defaultBuildTask}"
}
Expand Down
2 changes: 1 addition & 1 deletion .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"tasks": [
{
"type": "npm",
"script": "watch",
"script": "webpack",
"problemMatcher": "$tsc-watch",
"isBackground": true,
"presentation": {
Expand Down
4 changes: 3 additions & 1 deletion .vscodeignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,6 @@ vsc-extension-quickstart.md
node_modules
.eslintignore
.eslintrc.js
.prettierrc.js
.prettierrc.js
out
webpack.config.js
Loading

0 comments on commit 70a6430

Please sign in to comment.