2016-10-23 16:37:15 -04:00
|
|
|
/**
|
|
|
|
* @license
|
|
|
|
* Copyright Google Inc. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
|
|
* found in the LICENSE file at https://angular.io/license
|
|
|
|
*/
|
|
|
|
|
2016-11-23 16:49:57 -05:00
|
|
|
/* tslint:disable:no-console */
|
2018-07-09 07:04:45 -04:00
|
|
|
import {existsSync, mkdirSync} from 'fs';
|
2016-05-26 13:45:37 -04:00
|
|
|
|
2018-07-09 07:04:45 -04:00
|
|
|
import {TscWatch} from './tsc_watch';
|
2016-05-26 13:45:37 -04:00
|
|
|
|
2016-04-28 20:50:03 -04:00
|
|
|
export * from './tsc_watch';
|
|
|
|
import 'reflect-metadata';
|
|
|
|
|
|
|
|
function md(dir: string, folders: string[]) {
|
|
|
|
if (folders.length) {
|
2016-11-12 08:08:58 -05:00
|
|
|
const next = folders.shift();
|
|
|
|
const path = dir + '/' + next;
|
2016-04-28 20:50:03 -04:00
|
|
|
if (!existsSync(path)) {
|
|
|
|
mkdirSync(path);
|
|
|
|
}
|
|
|
|
md(path, folders);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-12 08:08:58 -05:00
|
|
|
let tscWatch: TscWatch = null;
|
|
|
|
const platform = process.argv.length >= 3 ? process.argv[2] : null;
|
|
|
|
const runMode: string = process.argv.length >= 4 ? process.argv[3] : null;
|
2017-08-31 17:06:22 -04:00
|
|
|
const debugMode = process.argv.some(arg => arg === '--debug');
|
2016-07-29 17:10:20 -04:00
|
|
|
const BaseConfig = {
|
|
|
|
start: 'File change detected. Starting incremental compilation...',
|
2018-06-25 05:11:22 -04:00
|
|
|
// This regex uses a negative lookbehind group (?<! 0 ), which causes it to not match a string
|
|
|
|
// containing " 0 error" but to match anything else containing "error". It requires the --harmony
|
|
|
|
// flag to run under node versions < 9.
|
|
|
|
error: /(?<! 0 )error/,
|
|
|
|
complete: 'Found 0 errors. Watching for file changes.',
|
2016-07-29 17:10:20 -04:00
|
|
|
};
|
2016-04-28 20:50:03 -04:00
|
|
|
|
|
|
|
if (platform == 'node') {
|
2017-10-24 07:54:08 -04:00
|
|
|
const specFiles = ['@angular/**/*_spec.js'];
|
2016-07-29 17:45:05 -04:00
|
|
|
tscWatch = new TscWatch(Object.assign(
|
|
|
|
{
|
2017-03-07 14:04:30 -05:00
|
|
|
tsconfig: 'packages/tsconfig.json',
|
2017-08-31 17:06:22 -04:00
|
|
|
onChangeCmds: [createNodeTestCommand(specFiles, debugMode)]
|
2016-07-29 17:45:05 -04:00
|
|
|
},
|
|
|
|
BaseConfig));
|
2016-04-28 20:50:03 -04:00
|
|
|
} else if (platform == 'browser') {
|
2016-07-29 17:45:05 -04:00
|
|
|
tscWatch = new TscWatch(Object.assign(
|
|
|
|
{
|
2017-03-07 14:04:30 -05:00
|
|
|
tsconfig: 'packages/tsconfig.json',
|
2016-07-29 17:45:05 -04:00
|
|
|
onStartCmds: [
|
|
|
|
[
|
|
|
|
'node', 'node_modules/karma/bin/karma', 'start', '--no-auto-watch', '--port=9876',
|
|
|
|
'karma-js.conf.js'
|
|
|
|
],
|
|
|
|
[
|
|
|
|
'node', 'node_modules/karma/bin/karma', 'start', '--no-auto-watch', '--port=9877',
|
2017-03-07 14:04:30 -05:00
|
|
|
'packages/router/karma.conf.js'
|
2016-07-29 17:45:05 -04:00
|
|
|
],
|
|
|
|
],
|
|
|
|
onChangeCmds: [
|
|
|
|
['node', 'node_modules/karma/bin/karma', 'run', 'karma-js.conf.js', '--port=9876'],
|
|
|
|
['node', 'node_modules/karma/bin/karma', 'run', '--port=9877'],
|
2016-08-30 21:07:40 -04:00
|
|
|
]
|
|
|
|
},
|
|
|
|
BaseConfig));
|
|
|
|
} else if (platform == 'router') {
|
|
|
|
tscWatch = new TscWatch(Object.assign(
|
|
|
|
{
|
2017-03-07 14:04:30 -05:00
|
|
|
tsconfig: 'packages/tsconfig.json',
|
2016-08-30 21:07:40 -04:00
|
|
|
onStartCmds: [
|
|
|
|
[
|
|
|
|
'node', 'node_modules/karma/bin/karma', 'start', '--no-auto-watch', '--port=9877',
|
2017-03-07 14:04:30 -05:00
|
|
|
'packages/router/karma.conf.js'
|
2016-08-30 21:07:40 -04:00
|
|
|
],
|
|
|
|
],
|
|
|
|
onChangeCmds: [
|
|
|
|
['node', 'node_modules/karma/bin/karma', 'run', '--port=9877'],
|
2016-07-29 17:45:05 -04:00
|
|
|
]
|
|
|
|
},
|
|
|
|
BaseConfig));
|
2016-07-29 17:10:20 -04:00
|
|
|
} else if (platform == 'browserNoRouter') {
|
2016-07-29 17:45:05 -04:00
|
|
|
tscWatch = new TscWatch(Object.assign(
|
|
|
|
{
|
2017-03-07 14:04:30 -05:00
|
|
|
tsconfig: 'packages/tsconfig.json',
|
2016-07-29 17:45:05 -04:00
|
|
|
onStartCmds: [[
|
|
|
|
'node', 'node_modules/karma/bin/karma', 'start', '--no-auto-watch', '--port=9876',
|
|
|
|
'karma-js.conf.js'
|
|
|
|
]],
|
|
|
|
onChangeCmds: [
|
|
|
|
['node', 'node_modules/karma/bin/karma', 'run', 'karma-js.conf.js', '--port=9876'],
|
|
|
|
]
|
|
|
|
},
|
|
|
|
BaseConfig));
|
2016-07-21 19:12:40 -04:00
|
|
|
} else {
|
|
|
|
throw new Error(`unknown platform: ${platform}`);
|
2016-04-28 20:50:03 -04:00
|
|
|
}
|
|
|
|
|
2016-05-03 12:24:09 -04:00
|
|
|
if (runMode === 'watch') {
|
|
|
|
tscWatch.watch();
|
2016-05-04 23:01:17 -04:00
|
|
|
} else if (runMode === 'runCmdsOnly') {
|
|
|
|
tscWatch.runCmdsOnly();
|
2016-05-03 12:24:09 -04:00
|
|
|
} else {
|
|
|
|
tscWatch.run();
|
|
|
|
}
|
2017-08-31 17:06:22 -04:00
|
|
|
|
|
|
|
function createNodeTestCommand(specFiles: string[], debugMode: boolean) {
|
|
|
|
return ['node']
|
|
|
|
.concat(debugMode ? ['--inspect'] : [])
|
|
|
|
.concat('dist/tools/cjs-jasmine', '--')
|
|
|
|
.concat(specFiles);
|
|
|
|
}
|