2015-04-25 17:45:08 -04:00
|
|
|
'use strict';
|
|
|
|
|
2015-11-14 11:10:31 -05:00
|
|
|
// THIS CHECK SHOULD BE THE FIRST THING IN THIS FILE
|
|
|
|
// This is to ensure that we catch env issues before we error while requiring other dependencies.
|
|
|
|
require('./tools/check-environment')(
|
2016-05-24 15:33:14 -04:00
|
|
|
{requiredNpmVersion: '>=3.5.3 <4.0.0', requiredNodeVersion: '>=5.4.1 <6.0.0'});
|
2015-11-14 11:10:31 -05:00
|
|
|
|
|
|
|
|
2016-05-24 15:33:14 -04:00
|
|
|
let gulp = require('gulp');
|
2015-11-27 02:45:40 -05:00
|
|
|
|
|
|
|
|
2016-05-24 15:33:14 -04:00
|
|
|
gulp.task('tools:build', (done) => {
|
|
|
|
tsc('tools/', done)
|
2015-06-10 19:52:19 -04:00
|
|
|
});
|
|
|
|
|
2015-04-27 18:24:32 -04:00
|
|
|
|
2016-05-24 15:33:14 -04:00
|
|
|
gulp.task('serve', () => {
|
|
|
|
let connect = require('gulp-connect');
|
|
|
|
let cors = require('cors');
|
2015-11-27 02:45:40 -05:00
|
|
|
|
2016-05-24 15:33:14 -04:00
|
|
|
connect.server({
|
|
|
|
root: `${__dirname}/dist`,
|
|
|
|
port: 8000,
|
|
|
|
livereload: false,
|
|
|
|
open: false,
|
|
|
|
middleware: (connect, opt) => {
|
|
|
|
return [cors()];
|
2016-04-29 00:57:16 -04:00
|
|
|
}
|
|
|
|
});
|
2015-04-24 13:15:52 -04:00
|
|
|
});
|
|
|
|
|
2015-04-27 03:46:48 -04:00
|
|
|
|
2016-05-24 15:33:14 -04:00
|
|
|
function tsc(projectPath, done) {
|
|
|
|
let child_process = require('child_process');
|
2015-02-20 20:44:23 -05:00
|
|
|
|
2016-05-24 15:33:14 -04:00
|
|
|
child_process.spawn(
|
|
|
|
`${__dirname}/node_modules/.bin/tsc`,
|
|
|
|
['-p', `${__dirname}/projectPath`],
|
|
|
|
{stdio: 'inherit'}
|
|
|
|
).on('close', (errorCode) => done(errorCode));
|
2015-08-27 13:39:39 -04:00
|
|
|
}
|