File tree Expand file tree Collapse file tree 6 files changed +8
-4
lines changed
packages/angular_devkit/schematics/tasks Expand file tree Collapse file tree 6 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 5
5
* Use of this source code is governed by an MIT-style license that can be
6
6
* found in the LICENSE file at https://angular.io/license
7
7
*/
8
- export { NodePackageInstallTask } from './node-package/install-task' ;
9
- export { NodePackageLinkTask } from './node-package/link-task' ;
8
+ // TODO: This folder should not be prefixed with `not-`, but its's needed to workaround a Bazel bug:
9
+ // https://github.com/bazelbuild/rules_nodejs/issues/313
10
+ export { NodePackageInstallTask } from './not-node-package/install-task' ;
11
+ export { NodePackageLinkTask } from './not-node-package/link-task' ;
10
12
export { RepositoryInitializerTask } from './repo-init/init-task' ;
11
13
export { RunSchematicTask } from './run-schematic/task' ;
12
14
export { TslintFixTask } from './tslint-fix/task' ;
Original file line number Diff line number Diff line change 5
5
* Use of this source code is governed by an MIT-style license that can be
6
6
* found in the LICENSE file at https://angular.io/license
7
7
*/
8
+ // TODO: This folder should not be prefixed with `not-`, but its's needed to workaround a Bazel bug:
9
+ // https://github.com/bazelbuild/rules_nodejs/issues/313
8
10
import { TaskExecutorFactory } from '../../src' ;
9
- import { NodePackageName , NodePackageTaskFactoryOptions } from '../node-package/options' ;
11
+ import { NodePackageName , NodePackageTaskFactoryOptions } from '../not- node-package/options' ;
10
12
import {
11
13
RepositoryInitializerName ,
12
14
RepositoryInitializerTaskFactoryOptions ,
@@ -17,7 +19,7 @@ import { TslintFixName } from '../tslint-fix/options';
17
19
export class BuiltinTaskExecutor {
18
20
static readonly NodePackage : TaskExecutorFactory < NodePackageTaskFactoryOptions > = {
19
21
name : NodePackageName ,
20
- create : ( options ) => import ( '../node-package/executor' ) . then ( mod => mod . default ( options ) ) ,
22
+ create : ( options ) => import ( '../not- node-package/executor' ) . then ( mod => mod . default ( options ) ) ,
21
23
} ;
22
24
static readonly RepositoryInitializer :
23
25
TaskExecutorFactory < RepositoryInitializerTaskFactoryOptions > = {
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
You can’t perform that action at this time.
0 commit comments