File tree Expand file tree Collapse file tree 4 files changed +8
-12
lines changed
packages/schematics/angular Expand file tree Collapse file tree 4 files changed +8
-12
lines changed Original file line number Diff line number Diff line change @@ -86,8 +86,6 @@ ts_project(
8686 for (src , _ ) in ALL_SCHEMA_TARGETS
8787 ],
8888 data = RUNTIME_ASSETS ,
89- # TODO: Fix strict_deps failure
90- ignore_strict_deps = True ,
9189 module_name = "@schematics/angular" ,
9290 deps = [
9391 ":node_modules/@angular-devkit/core" ,
Original file line number Diff line number Diff line change @@ -17,9 +17,10 @@ import {
1717 strings ,
1818 url ,
1919} from '@angular-devkit/schematics' ;
20- import { AngularBuilder , readWorkspace , updateWorkspace } from '@schematics/angular/utility' ;
2120import { posix as path } from 'node:path' ;
2221import { relativePathToWorkspaceRoot } from '../utility/paths' ;
22+ import { getWorkspace as readWorkspace , updateWorkspace } from '../utility/workspace' ;
23+ import { Builders as AngularBuilder } from '../utility/workspace-models' ;
2324import { Schema as ConfigOptions , Type as ConfigType } from './schema' ;
2425
2526export default function ( options : ConfigOptions ) : Rule {
Original file line number Diff line number Diff line change @@ -17,17 +17,13 @@ import {
1717 strings ,
1818 url ,
1919} from '@angular-devkit/schematics' ;
20- import {
21- AngularBuilder ,
22- DependencyType ,
23- ExistingBehavior ,
24- addDependency ,
25- addRootProvider ,
26- updateWorkspace ,
27- } from '@schematics/angular/utility' ;
2820import { posix as path } from 'node:path' ;
21+ import { DependencyType , ExistingBehavior , addDependency } from '../utility/dependency' ;
2922import { JSONFile } from '../utility/json-file' ;
3023import { latestVersions } from '../utility/latest-versions' ;
24+ import { addRootProvider } from '../utility/standalone' ;
25+ import { updateWorkspace } from '../utility/workspace' ;
26+ import { Builders as AngularBuilder } from '../utility/workspace-models' ;
3127import { Schema as E2eOptions } from './schema' ;
3228
3329/**
Original file line number Diff line number Diff line change 77 */
88
99import { Rule , SchematicsException , chain } from '@angular-devkit/schematics' ;
10- import { AngularBuilder , TargetDefinition , updateWorkspace } from '@schematics/angular/utility' ;
1110import { posix as path } from 'node:path' ;
11+ import { TargetDefinition , updateWorkspace } from '../utility/workspace' ;
12+ import { Builders as AngularBuilder } from '../utility/workspace-models' ;
1213import { Schema as EnvironmentOptions } from './schema' ;
1314
1415const ENVIRONMENTS_DIRECTORY = 'environments' ;
You can’t perform that action at this time.
0 commit comments