mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-17 19:13:34 +08:00
As part of tslint deprecation we are also deprecated the TslintFixTask. Users should use `ng lint --fix` directly instead
37 lines
1.5 KiB
TypeScript
37 lines
1.5 KiB
TypeScript
/**
|
|
* @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
|
|
*/
|
|
import { TaskExecutor, TaskExecutorFactory } from '../../src';
|
|
import { NodePackageName, NodePackageTaskFactoryOptions } from '../package-manager/options';
|
|
import {
|
|
RepositoryInitializerName,
|
|
RepositoryInitializerTaskFactoryOptions,
|
|
} from '../repo-init/options';
|
|
import { RunSchematicName } from '../run-schematic/options';
|
|
import { TslintFixName } from '../tslint-fix/options';
|
|
|
|
export class BuiltinTaskExecutor {
|
|
static readonly NodePackage: TaskExecutorFactory<NodePackageTaskFactoryOptions> = {
|
|
name: NodePackageName,
|
|
create: (options) => import('../package-manager/executor').then(mod => mod.default(options)) as Promise<TaskExecutor<{}>>,
|
|
};
|
|
static readonly RepositoryInitializer:
|
|
TaskExecutorFactory<RepositoryInitializerTaskFactoryOptions> = {
|
|
name: RepositoryInitializerName,
|
|
create: (options) => import('../repo-init/executor').then(mod => mod.default(options)),
|
|
};
|
|
static readonly RunSchematic: TaskExecutorFactory<{}> = {
|
|
name: RunSchematicName,
|
|
create: () => import('../run-schematic/executor').then(mod => mod.default()) as Promise<TaskExecutor<{}>>,
|
|
};
|
|
/** @deprecated since version 11. Use `ng lint --fix` directly instead. */
|
|
static readonly TslintFix: TaskExecutorFactory<{}> = {
|
|
name: TslintFixName,
|
|
create: () => import('../tslint-fix/executor').then(mod => mod.default()),
|
|
};
|
|
}
|