Skip to content
This repository was archived by the owner on Oct 15, 2025. It is now read-only.

Commit 907e83b

Browse files
schuchardmstivali
andauthored
Feature/angular 14 version support (#115) (#118)
Co-authored-by: Matt Stivali <matt.stivali@briebug.com> Co-authored-by: Matthew Stivali <matthewstivali@gmail.com>
1 parent b6d7390 commit 907e83b

File tree

14 files changed

+5895
-5761
lines changed

14 files changed

+5895
-5761
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,10 @@ module.exports = {
4040
};
4141
```
4242

43+
## Jest issues
44+
45+
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.
46+
4347
Issues with this schematic can be filed [here](https://github.com/briebug/jest-schematic/issues/new/choose).
4448

4549
## Learning Resources 📚

sandboxes/single-app/angular.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,5 @@
128128
}
129129
}
130130
}
131-
},
132-
"defaultProject": "sandbox"
131+
}
133132
}

sandboxes/single-app/package.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -11,22 +11,22 @@
1111
},
1212
"private": true,
1313
"dependencies": {
14-
"@angular/animations": "~13.0.2",
15-
"@angular/common": "~13.0.2",
16-
"@angular/compiler": "~13.0.2",
17-
"@angular/core": "~13.0.2",
18-
"@angular/forms": "~13.0.2",
19-
"@angular/platform-browser": "~13.0.2",
20-
"@angular/platform-browser-dynamic": "~13.0.2",
21-
"@angular/router": "~13.0.2",
14+
"@angular/animations": "^14.2.0",
15+
"@angular/common": "^14.2.0",
16+
"@angular/compiler": "^14.2.0",
17+
"@angular/core": "^14.2.0",
18+
"@angular/forms": "^14.2.0",
19+
"@angular/platform-browser": "^14.2.0",
20+
"@angular/platform-browser-dynamic": "^14.2.0",
21+
"@angular/router": "^14.2.0",
2222
"rxjs": "~6.5.5",
2323
"tslib": "^2.0.0",
2424
"zone.js": "~0.11.4"
2525
},
2626
"devDependencies": {
27-
"@angular-devkit/build-angular": "~13.0.3",
28-
"@angular/cli": "~13.0.3",
29-
"@angular/compiler-cli": "~13.0.2",
27+
"@angular-devkit/build-angular": "^14.2.1",
28+
"@angular/cli": "^14.2.1",
29+
"@angular/compiler-cli": "^14.2.0",
3030
"@types/node": "^12.11.1",
3131
"@types/jasmine": "~3.6.0",
3232
"@types/jasminewd2": "~2.0.3",
@@ -41,6 +41,6 @@
4141
"protractor": "~7.0.0",
4242
"ts-node": "~8.3.0",
4343
"tslint": "~6.1.0",
44-
"typescript": "~4.4.4"
44+
"typescript": "~4.7.0"
4545
}
4646
}

sandboxes/single-app/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"experimentalDecorators": true,
1111
"moduleResolution": "node",
1212
"importHelpers": true,
13-
"target": "es2015",
13+
"target": "es2020",
1414
"module": "es2020",
1515
"lib": ["es2018", "dom"]
1616
}

0 commit comments

Comments
 (0)