mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-17 02:54:21 +08:00
93 lines
3.0 KiB
TypeScript
93 lines
3.0 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright Google LLC 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
|
|
*/
|
|
|
|
import { Path, getSystemPath, normalize, schema, virtualFs } from '@angular-devkit/core';
|
|
import { NodeJsSyncHost } from '@angular-devkit/core/node';
|
|
import { workflow } from '@angular-devkit/schematics';
|
|
import { BuiltinTaskExecutor } from '../../tasks/node';
|
|
import { FileSystemEngine } from '../description';
|
|
import { OptionTransform } from '../file-system-engine-host-base';
|
|
import { NodeModulesEngineHost } from '../node-module-engine-host';
|
|
import { validateOptionsWithSchema } from '../schema-option-transform';
|
|
|
|
export interface NodeWorkflowOptions {
|
|
force?: boolean;
|
|
dryRun?: boolean;
|
|
packageManager?: string;
|
|
packageManagerForce?: boolean;
|
|
packageRegistry?: string;
|
|
registry?: schema.CoreSchemaRegistry;
|
|
resolvePaths?: string[];
|
|
schemaValidation?: boolean;
|
|
optionTransforms?: OptionTransform<Record<string, unknown> | null, object>[];
|
|
engineHostCreator?: (options: NodeWorkflowOptions) => NodeModulesEngineHost;
|
|
}
|
|
|
|
/**
|
|
* A workflow specifically for Node tools.
|
|
*/
|
|
export class NodeWorkflow extends workflow.BaseWorkflow {
|
|
constructor(root: string, options: NodeWorkflowOptions);
|
|
|
|
constructor(host: virtualFs.Host, options: NodeWorkflowOptions & { root?: Path });
|
|
|
|
constructor(hostOrRoot: virtualFs.Host | string, options: NodeWorkflowOptions & { root?: Path }) {
|
|
let host;
|
|
let root;
|
|
if (typeof hostOrRoot === 'string') {
|
|
root = normalize(hostOrRoot);
|
|
host = new virtualFs.ScopedHost(new NodeJsSyncHost(), root);
|
|
} else {
|
|
host = hostOrRoot;
|
|
root = options.root;
|
|
}
|
|
|
|
const engineHost =
|
|
options.engineHostCreator?.(options) || new NodeModulesEngineHost(options.resolvePaths);
|
|
super({
|
|
host,
|
|
engineHost,
|
|
|
|
force: options.force,
|
|
dryRun: options.dryRun,
|
|
registry: options.registry,
|
|
});
|
|
|
|
engineHost.registerTaskExecutor(BuiltinTaskExecutor.NodePackage, {
|
|
allowPackageManagerOverride: true,
|
|
packageManager: options.packageManager,
|
|
force: options.packageManagerForce,
|
|
rootDirectory: root && getSystemPath(root),
|
|
registry: options.packageRegistry,
|
|
});
|
|
engineHost.registerTaskExecutor(BuiltinTaskExecutor.RepositoryInitializer, {
|
|
rootDirectory: root && getSystemPath(root),
|
|
});
|
|
engineHost.registerTaskExecutor(BuiltinTaskExecutor.RunSchematic);
|
|
|
|
if (options.optionTransforms) {
|
|
for (const transform of options.optionTransforms) {
|
|
engineHost.registerOptionsTransform(transform);
|
|
}
|
|
}
|
|
|
|
if (options.schemaValidation) {
|
|
engineHost.registerOptionsTransform(validateOptionsWithSchema(this.registry));
|
|
}
|
|
|
|
this._context = [];
|
|
}
|
|
|
|
override get engine(): FileSystemEngine {
|
|
return this._engine as FileSystemEngine;
|
|
}
|
|
override get engineHost(): NodeModulesEngineHost {
|
|
return this._engineHost as NodeModulesEngineHost;
|
|
}
|
|
}
|