mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-14 09:37:18 +08:00
54 lines
1.7 KiB
TypeScript
54 lines
1.7 KiB
TypeScript
import {join} from 'path';
|
|
import {git, ng, silentNpm} from '../utils/process';
|
|
import { expectFileToExist, writeFile } from '../utils/fs';
|
|
import {
|
|
useSha,
|
|
useNgVersion,
|
|
useCIChrome,
|
|
useCIDefaults,
|
|
useBuiltPackages,
|
|
useDevKit,
|
|
useDevKitSnapshots,
|
|
updateJsonFile,
|
|
} from '../utils/project';
|
|
import {gitClean, gitCommit} from '../utils/git';
|
|
import {getGlobalVariable} from '../utils/env';
|
|
|
|
|
|
export default async function() {
|
|
const argv = getGlobalVariable('argv');
|
|
|
|
if (argv.noproject) {
|
|
return;
|
|
}
|
|
|
|
if (argv.reuse) {
|
|
process.chdir(argv.reuse);
|
|
await gitClean();
|
|
} else {
|
|
await ng('new', 'test-project', '--skip-install');
|
|
await expectFileToExist(join(process.cwd(), 'test-project'));
|
|
process.chdir('./test-project');
|
|
}
|
|
|
|
return Promise.resolve()
|
|
.then(() => useBuiltPackages())
|
|
.then(() => argv.devkit ? useDevKit(argv.devkit) : useDevKitSnapshots())
|
|
.then(() => useCIChrome('e2e'))
|
|
.then(() => useCIChrome('src'))
|
|
.then(() => argv['ng-version'] ? useNgVersion(argv['ng-version']) : Promise.resolve())
|
|
.then(() => argv['ng-snapshots'] || argv['ng-tag'] ? useSha() : Promise.resolve())
|
|
// npm link on Circle CI is very noisy.
|
|
.then(() => silentNpm('install'))
|
|
.then(() => ng('version'))
|
|
// Force sourcemaps to be from the root of the filesystem.
|
|
.then(() => updateJsonFile('tsconfig.json', json => {
|
|
json['compilerOptions']['sourceRoot'] = '/';
|
|
}))
|
|
.then(() => git('config', 'user.email', 'angular-core+e2e@google.com'))
|
|
.then(() => git('config', 'user.name', 'Angular CLI E2e'))
|
|
.then(() => git('config', 'commit.gpgSign', 'false'))
|
|
.then(() => useCIDefaults())
|
|
.then(() => gitCommit('tsconfig-e2e-update'));
|
|
}
|