-
Notifications
You must be signed in to change notification settings - Fork 12k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(@angular/cli): resolve in all available node_modules
When @angular/cli dependencies (like @ngtool/webpack for example) are installed in its node_modules (as node_modules/@angular/cli/node_modules for example) webpack isn't seeing them.
- Loading branch information
1 parent
0a8dced
commit 9d63162
Showing
2 changed files
with
14 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import { createDir, moveFile } from '../../utils/fs'; | ||
import { ng } from '../../utils/process'; | ||
|
||
export default async function () { | ||
await createDir('node_modules/@angular/cli/node_modules'); | ||
await moveFile( | ||
'node_modules/@ngtools', | ||
'node_modules/@angular/cli/node_modules/@ngtools' | ||
); | ||
|
||
await ng('build'); | ||
} |