Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
2b1b58b
Add gulpfile with same tasks as Jakefile
weswigham Jun 10, 2016
9dcaf2b
Fix package.json casing
weswigham Jun 10, 2016
d756806
Quick fix for runtests-parallel
weswigham Jun 10, 2016
6c74545
Merge branch 'master' into remove-jake
weswigham Jun 10, 2016
8f7c6e8
Remove compileFile and exec browserify - use gulp-typescript instead
weswigham Jun 14, 2016
52a1659
fixup! Remove compileFile and exec browserify - use gulp-typescript i…
weswigham Jun 14, 2016
e6838b6
Working on gulpifying things
weswigham Jun 14, 2016
1defdc3
Gulfile runs tests and compiles like a champ
weswigham Jun 14, 2016
684ce6e
Add back in Jakefile for transitional period
weswigham Jun 14, 2016
2ff408f
Add local patch for gulp-typescript types
weswigham Jun 14, 2016
2634a67
Merge branch 'master' into remove-jake
weswigham Jun 14, 2016
f12d035
Fix typos in help text
weswigham Jun 14, 2016
dc14ce2
Give Jakefile its ending newline back
weswigham Jun 14, 2016
ffbdbf0
Correct package.json indentation
weswigham Jun 14, 2016
4628e1a
Add --types to pass an empty array to types to disable @types in Jake…
weswigham Jun 14, 2016
121bead
Fix run.js depending on the wrong local build target
weswigham Jun 14, 2016
09ff532
Fix lssl task
weswigham Jun 15, 2016
c7c2abb
Add needsUpdate check to lib tasks
weswigham Jun 15, 2016
e0ffe05
Alter LKG task to let more be done in parallel
weswigham Jun 15, 2016
c98166c
Accept new LKG (LKGd via gulp)
weswigham Jun 15, 2016
81d6c07
Make builtLocalCompiler depend on the local servicesFile
weswigham Jun 15, 2016
0e5b741
Use merge2, gulp-if, gulp-newer, and more projects
weswigham Jun 20, 2016
8ca1910
Add watch task
weswigham Jun 20, 2016
9619e3a
Working non-inline sourcemaps for runtests
weswigham Jun 20, 2016
9d10f7c
browser tests now also loads sourcemaps from disk
weswigham Jun 20, 2016
b103857
Merge branch 'master' into remove-jake
weswigham Jun 20, 2016
d7970a5
Lazypipes and better services stream management
weswigham Jun 21, 2016
1c9ad5c
Do copyright without gulp-if and lazypipe
weswigham Jun 22, 2016
8aeb682
Remove tsd scripts task from gulpfile
weswigham Jun 22, 2016
d008da5
Make use of module compiler option explicit, add strip internal to ts…
weswigham Jun 22, 2016
a2fdc7e
Add Gulpfile lint to jake, fix lints
weswigham Jun 23, 2016
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 1 addition & 20 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
// ${cwd}: the current working directory of the spawned process
{
"version": "0.1.0",
"command": "jake",
"command": "gulp",
"isShellCommand": true,
"showOutput": "silent",
"tasks": [
Expand All @@ -18,25 +18,6 @@
"problemMatcher": [
"$tsc"
]
},
{
"taskName": "lint-server",
"args": [],
"problemMatcher": {
"owner": "typescript",
"fileLocation": ["relative", "${workspaceRoot}"],
"pattern": {
"regexp": "^(warning|error)\\s+([^(]+)\\s+\\((\\d+|\\d+,\\d+|\\d+,\\d+,\\d+,\\d+)\\):\\s+(.*)$",
"severity": 1,
"file": 2,
"location": 3,
"message": 4
},
"watchedTaskBeginsRegExp": "^\\*\\*\\*Lint failure\\*\\*\\*$",
"watchedTaskEndsRegExp": "^\\*\\*\\* Total \\d+ failures\\.$"
},
"showOutput": "always",
"isWatching": true
}
]
}
Loading