提交 650b75a9 编写于 作者: J Joao Moreno

win32 tfs builds

上级 484a2db0
......@@ -47,6 +47,7 @@ const indentationFilter = [
'**',
'!ThirdPartyNotices.txt',
'!**/*.md',
'!**/*.ps1',
'!**/*.template',
'!**/*.yml',
'!**/lib/**',
......
. .\lib.ps1
exec { & .\scripts\npm.bat install }
exec { & npm run gulp -- mixin }
exec { & npm run gulp -- --max_old_space_size=4096 vscode-win32-min }
\ No newline at end of file
# stop when there's an error
$ErrorActionPreference = 'Stop'
# throw when a process exits with something other than 0
function exec([scriptblock]$cmd, [string]$errorMessage = "Error executing command: " + $cmd) {
& $cmd
if ($LastExitCode -ne 0) {
throw $errorMessage
}
}
. .\lib.ps1
exec { & npm run gulp -- electron }
exec { & .\scripts\test.bat --build --reporter dot }
# exec { & .\scripts\test-integration.bat }
\ No newline at end of file
......@@ -16,7 +16,8 @@
"watch": "gulp watch --max_old_space_size=4096",
"monaco-editor-setup": "node scripts/monaco-editor-setup.js",
"monaco-editor-test": "mocha --only-monaco-editor",
"precommit": "node build/gulpfile.hygiene.js"
"precommit": "node build/gulpfile.hygiene.js",
"gulp": "gulp"
},
"dependencies": {
"applicationinsights": "0.17.1",
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册