-
Notifications
You must be signed in to change notification settings - Fork 97
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add support for Angular v13 by @fmalcher (v1.0.0-rc.3)
* fix: remove deprecated JSON parser, use workspace tools * v1.0.0-rc.3 fixes #138 fixes #137 Co-authored-by: Johannes Hoppe <[email protected]>
- Loading branch information
1 parent
98f291e
commit aa7ea02
Showing
7 changed files
with
157 additions
and
150 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
// Jest Snapshot v1, https://goo.gl/fbAQLP | ||
|
||
exports[`ng-add generating files generates new files if starting from scratch 1`] = ` | ||
"{ | ||
\\"version\\": 1, | ||
\\"defaultProject\\": \\"THEPROJECT\\", | ||
\\"projects\\": { | ||
\\"THEPROJECT\\": { | ||
\\"projectType\\": \\"application\\", | ||
\\"root\\": \\"PROJECTROOT\\", | ||
\\"architect\\": { | ||
\\"build\\": { | ||
\\"options\\": { | ||
\\"outputPath\\": \\"dist/THEPROJECT\\" | ||
} | ||
}, | ||
\\"deploy\\": { | ||
\\"builder\\": \\"angular-cli-ghpages:deploy\\" | ||
} | ||
} | ||
}, | ||
\\"OTHERPROJECT\\": { | ||
\\"projectType\\": \\"application\\", | ||
\\"root\\": \\"PROJECTROOT\\", | ||
\\"architect\\": { | ||
\\"build\\": { | ||
\\"options\\": { | ||
\\"outputPath\\": \\"dist/OTHERPROJECT\\" | ||
} | ||
} | ||
} | ||
} | ||
} | ||
}" | ||
`; | ||
|
||
exports[`ng-add generating files overrides existing files 1`] = ` | ||
"{ | ||
\\"version\\": 1, | ||
\\"defaultProject\\": \\"THEPROJECT\\", | ||
\\"projects\\": { | ||
\\"THEPROJECT\\": { | ||
\\"projectType\\": \\"application\\", | ||
\\"root\\": \\"PROJECTROOT\\", | ||
\\"architect\\": { | ||
\\"build\\": { | ||
\\"options\\": { | ||
\\"outputPath\\": \\"dist/THEPROJECT\\" | ||
} | ||
}, | ||
\\"deploy\\": { | ||
\\"builder\\": \\"angular-cli-ghpages:deploy\\" | ||
} | ||
} | ||
}, | ||
\\"OTHERPROJECT\\": { | ||
\\"projectType\\": \\"application\\", | ||
\\"root\\": \\"PROJECTROOT\\", | ||
\\"architect\\": { | ||
\\"build\\": { | ||
\\"options\\": { | ||
\\"outputPath\\": \\"dist/OTHERPROJECT\\" | ||
} | ||
}, | ||
\\"deploy\\": { | ||
\\"builder\\": \\"angular-cli-ghpages:deploy\\" | ||
} | ||
} | ||
} | ||
} | ||
}" | ||
`; |
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
Oops, something went wrong.