Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoao Moreno <joao.moreno@microsoft.com>2019-07-01 13:52:09 +0300
committerJoao Moreno <joao.moreno@microsoft.com>2019-07-01 13:52:09 +0300
commit2f1373c0bb88eb80818bae15c0d02833ec955876 (patch)
treee100f234c2036e27678d7009b9ad92ccf147aaee /gulpfile.js
parent399ff1a2fe96279add5162fae0208f24c0e181d8 (diff)
introduce gulpfile.ci.js
Diffstat (limited to 'gulpfile.js')
-rw-r--r--gulpfile.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/gulpfile.js b/gulpfile.js
index 1d13cff608c..e41bf4a498f 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -40,4 +40,6 @@ process.on('unhandledRejection', (reason, p) => {
// Load all the gulpfiles only if running tasks other than the editor tasks
const build = path.join(__dirname, 'build');
require('glob').sync('gulpfile.*.js', { cwd: build })
+ .filter(f => !/gulpfile\.ci\.js/.test(f))
.forEach(f => require(`./build/${f}`));
+require('./build/gulpfile.ci.js'); \ No newline at end of file