nightwatchjs / nightwatch-schematics

Add Nightwatchjs to an Angular CLI project
https://www.npmjs.com/package/@nightwatch/schematics
MIT License
8 stars 8 forks source link

Update `@angular-devkit` and `@schematics` to v13 #15

Closed vaibhavsingh97 closed 2 years ago

vaibhavsingh97 commented 2 years ago

The upgrade from Angular DevKit to v12 to v13 included some breaking changes, notably around the JSON parser. They have removed the public API that we use in json-utils.ts. List of public APIs they had removed

- JsonAstNode
- JsonAstKeyValue
- JsonAstObject
- JsonParseMode
- parseJsonAst

They recommend using a separate JSON parser jsonc-parser

Related PR: https://github.com/nightwatchjs/nightwatch-schematics/pull/14, https://github.com/angular/angular-cli/pull/21563