Skip to content

Commit

Permalink
refactored code and used webpack to bundle (#76)
Browse files Browse the repository at this point in the history
Signed-off-by: Kathryn Kodama <[email protected]>
  • Loading branch information
kathrynkodama authored Oct 1, 2020
1 parent 3200a7a commit 59f9c3d
Show file tree
Hide file tree
Showing 12 changed files with 3,336 additions and 51 deletions.
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ out
node_modules
.vscode-test/
*.vsix
package-lock.json
.DS_Store
.DS_Store
dist
2 changes: 1 addition & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"--extensionDevelopmentPath=${workspaceFolder}"
],
"outFiles": [
"${workspaceFolder}/out/**/*.js"
"${workspaceFolder}/dist/**/*.js"
],
"preLaunchTask": "npm: watch"
},
Expand Down
17 changes: 16 additions & 1 deletion .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,22 @@
{
"type": "npm",
"script": "watch",
"problemMatcher": "$tsc-watch",
"problemMatcher": {
"owner": "typescript",
"pattern": [
{
"regexp": "\\[tsl\\] ERROR",
"file": 1,
"location": 2,
"message": 3
}
],
"background": {
"activeOnStart": true,
"beginsPattern": "Compilation \\w+ starting…",
"endsPattern": "Compilation\\s+finished"
}
},
"isBackground": true,
"presentation": {
"reveal": "never"
Expand Down
9 changes: 5 additions & 4 deletions .vscodeignore
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
.vscode/**
.vscode-test/**
out/test/**
src/**
out/
src/
.github
.gitignore
vsc-extension-quickstart.md
**/tsconfig.json
**/tslint.json
webpack.config.js
**/*.map
**/*.ts
node_modules
Loading

0 comments on commit 59f9c3d

Please sign in to comment.