Skip to content

Commit

Permalink
Converted build to webpack
Browse files Browse the repository at this point in the history
  • Loading branch information
TwitchBronBron committed Sep 21, 2019
1 parent 915c998 commit 7ef638b
Show file tree
Hide file tree
Showing 9 changed files with 2,771 additions and 179 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ coverage
.nyc_output
.roku-deploy-staging
*.vsix
dist
6 changes: 3 additions & 3 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
"type": "extensionHost",
"request": "launch",
"name": "Extension",
"preLaunchTask": "npm",
"preLaunchTask": "watch",
"runtimeExecutable": "${execPath}",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}"
],
"outFiles": [ "${workspaceFolder}/out/**/*.js" ]
"outFiles": [ "${workspaceFolder}/dist/**/*.js" ]
},
{
"type": "node",
Expand All @@ -19,7 +19,7 @@
"cwd": "${workspaceFolder}",
"program": "${workspaceFolder}/src/debugAdapter.ts",
"args": [ "--server=4711" ],
"outFiles": [ "${workspaceFolder}/out/**/*.js" ],
"outFiles": [ "${workspaceFolder}/dist/**/*.js" ],
"stopOnEntry": false
},
{
Expand Down
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
".roku-deploy-staging": false,
"coverage": true,
"**/node_modules": true,
"**/out": true
"**/out": true,
"**/dist": true
},
"editor.insertSpaces": true,
"editor.detectIndentation": false,
Expand Down
21 changes: 16 additions & 5 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,14 @@
"tasks": [
{
"command": "npm",
"label": "npm",
"label": "watch",
"type": "shell",
"presentation": {
"echo": true,
"reveal": "silent",
"focus": false,
"panel": "shared"
"reveal": "always",
"focus": true,
"panel": "shared",
"clear": true
},
"args": [
"run",
Expand All @@ -18,7 +19,17 @@
"silent"
],
"isBackground": true,
"problemMatcher": "$tsc-watch"
"problemMatcher": {
"owner": "custom",
"pattern": {
"regexp": "__________"
},
"background": {
"activeOnStart": true,
"beginsPattern": "^Compilation\\s+starting",
"endsPattern": ".*hidden modules"
}
}
},
{
"type": "shell",
Expand Down
21 changes: 12 additions & 9 deletions .vscodeignore
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
.vscode/**
.vscode-test/**
out/test/**
test/**
src/**
**/*.map
.git/
.nyc_output/
.vscode/
coverage/
node_modules/
out/
src/
.gitignore
.travis.yml
*.vsix
developer-guidelines.md
**/tsconfig.json
**/tslint.json
vsc-extension-quickstart.md
**coverage/**/*
vscode-marketplace-publish.sh
vscode-marketplace-publish.sh
webpack.config.js
Loading

0 comments on commit 7ef638b

Please sign in to comment.