File tree 2 files changed +8
-2
lines changed
goldens/public-api/angular_devkit/schematics/tasks
packages/angular_devkit/schematics/tasks/package-manager
2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ export class NodePackageInstallTask implements TaskConfigurationGenerator<NodePa
27
27
workingDirectory? : string ;
28
28
}
29
29
30
- // @public (undocumented)
30
+ // @public @deprecated (undocumented)
31
31
export class NodePackageLinkTask implements TaskConfigurationGenerator <NodePackageTaskOptions > {
32
32
constructor (packageName ? : string | undefined , workingDirectory ? : string | undefined );
33
33
// (undocumented)
Original file line number Diff line number Diff line change 9
9
import { TaskConfiguration , TaskConfigurationGenerator } from '../../src' ;
10
10
import { NodePackageName , NodePackageTaskOptions } from './options' ;
11
11
12
+ /**
13
+ * @deprecated since version 18. Create a custom task if required.
14
+ */
12
15
export class NodePackageLinkTask implements TaskConfigurationGenerator < NodePackageTaskOptions > {
13
16
quiet = true ;
14
17
15
- constructor ( public packageName ?: string , public workingDirectory ?: string ) { }
18
+ constructor (
19
+ public packageName ?: string ,
20
+ public workingDirectory ?: string ,
21
+ ) { }
16
22
17
23
toConfiguration ( ) : TaskConfiguration < NodePackageTaskOptions > {
18
24
return {
You can’t perform that action at this time.
0 commit comments