Skip to content

Commit

Permalink
New build system
Browse files Browse the repository at this point in the history
  • Loading branch information
joandrsn committed Jun 18, 2017
1 parent df9521c commit 8043a12
Show file tree
Hide file tree
Showing 8 changed files with 237 additions and 207 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
build
out
node_modules
*.vsix
npm-debug.log
4 changes: 2 additions & 2 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
"args": ["--extensionDevelopmentPath=${workspaceRoot}" ],
"stopOnEntry": false,
"sourceMaps": true,
"outFiles": [ "${workspaceRoot}/build/**/*.js" ],
"preLaunchTask": "build"
"outFiles": [ "${workspaceRoot}/out/src/**/*.js" ],
"preLaunchTask": "npm"
}
]
}
4 changes: 2 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"files.exclude": {
"build": true,
"out": true,
"node_modules": true,
"*.vsix": true
},
"search.exclude": {
"build": true,
"out": true,
"*.vsix": true
}
}
13 changes: 6 additions & 7 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
{
"version": "0.1.0",
"tasks": [
{
"taskName": "build",
"command": "gulp",
"isShellCommand": true
}
]
"command": "npm",
"isShellCommand": true,
"showOutput": "silent",
"args": ["run", "build", "--loglevel", "silent"],
"isBackground": true,
"problemMatcher": "$tsc-watch"
}
Loading

0 comments on commit 8043a12

Please sign in to comment.