Skip to content

Commit

Permalink
Feature/angular 14 version support (#115) (#118)
Browse files Browse the repository at this point in the history
Co-authored-by: Matt Stivali <[email protected]>
Co-authored-by: Matthew Stivali <[email protected]>
  • Loading branch information
3 people authored Oct 24, 2022
1 parent b6d7390 commit 907e83b
Show file tree
Hide file tree
Showing 14 changed files with 5,895 additions and 5,761 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,10 @@ module.exports = {
};
```

## Jest issues

Issues related to jest, ts-jest, or test execution may be related the installed version of jest and jest-preset-angular. The schematic may install a version of jest other than latest in an attempt to configure package versions that work together correctly. If you experience issues with your tests after running the schematic related to the aforementioned packages, please review the package versions and adjust them as necessary.

Issues with this schematic can be filed [here](https://github.com/briebug/jest-schematic/issues/new/choose).

## Learning Resources 📚
Expand Down
3 changes: 1 addition & 2 deletions sandboxes/single-app/angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,5 @@
}
}
}
},
"defaultProject": "sandbox"
}
}
24 changes: 12 additions & 12 deletions sandboxes/single-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,22 +11,22 @@
},
"private": true,
"dependencies": {
"@angular/animations": "~13.0.2",
"@angular/common": "~13.0.2",
"@angular/compiler": "~13.0.2",
"@angular/core": "~13.0.2",
"@angular/forms": "~13.0.2",
"@angular/platform-browser": "~13.0.2",
"@angular/platform-browser-dynamic": "~13.0.2",
"@angular/router": "~13.0.2",
"@angular/animations": "^14.2.0",
"@angular/common": "^14.2.0",
"@angular/compiler": "^14.2.0",
"@angular/core": "^14.2.0",
"@angular/forms": "^14.2.0",
"@angular/platform-browser": "^14.2.0",
"@angular/platform-browser-dynamic": "^14.2.0",
"@angular/router": "^14.2.0",
"rxjs": "~6.5.5",
"tslib": "^2.0.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~13.0.3",
"@angular/cli": "~13.0.3",
"@angular/compiler-cli": "~13.0.2",
"@angular-devkit/build-angular": "^14.2.1",
"@angular/cli": "^14.2.1",
"@angular/compiler-cli": "^14.2.0",
"@types/node": "^12.11.1",
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "~2.0.3",
Expand All @@ -41,6 +41,6 @@
"protractor": "~7.0.0",
"ts-node": "~8.3.0",
"tslint": "~6.1.0",
"typescript": "~4.4.4"
"typescript": "~4.7.0"
}
}
2 changes: 1 addition & 1 deletion sandboxes/single-app/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"experimentalDecorators": true,
"moduleResolution": "node",
"importHelpers": true,
"target": "es2015",
"target": "es2020",
"module": "es2020",
"lib": ["es2018", "dom"]
}
Expand Down
Loading

0 comments on commit 907e83b

Please sign in to comment.