Skip to content

Commit

Permalink
feat: upgrade to Angular 17
Browse files Browse the repository at this point in the history
  • Loading branch information
arturovt committed Nov 27, 2023
1 parent 5da131b commit e482586
Show file tree
Hide file tree
Showing 5 changed files with 2,700 additions and 2,427 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -55,3 +55,5 @@ migrations.json
!.yarn/releases
!.yarn/sdks
!.yarn/versions

.nx/cache
2 changes: 2 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,5 @@ dist
assets
.husky
*.ejs

/.nx/cache
23 changes: 15 additions & 8 deletions nx.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,13 @@
{
"npmScope": "single-spa-angular",
"affected": {
"defaultBase": "master"
},
"tasksRunnerOptions": {
"default": {
"runner": "nx-cloud",
"options": {
"accessToken": "YmQwMTE3MTMtOTE0YS00ZjUwLTliN2ItMWI4N2NmMmQ1MTUzfHJlYWQtd3JpdGU=",
"cacheableOperations": ["build", "test", "lint", "e2e"],
"runtimeCacheInputs": ["node -v", "node ./scripts/get-os.js"],
"canTrackAnalytics": false,
"showUsageWarnings": true,
"parallel": 1
"showUsageWarnings": true
}
}
},
Expand Down Expand Up @@ -54,7 +49,19 @@
},
"targetDefaults": {
"build": {
"inputs": ["production", "^production"]
"inputs": ["production", "^production"],
"cache": true
},
"test": {
"cache": true
},
"lint": {
"cache": true
},
"e2e": {
"cache": true
}
}
},
"nxCloudAccessToken": "YmQwMTE3MTMtOTE0YS00ZjUwLTliN2ItMWI4N2NmMmQ1MTUzfHJlYWQtd3JpdGU=",
"parallel": 1
}
50 changes: 25 additions & 25 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -82,27 +82,28 @@
"test:ci:integration": "yarn start-test start:all 8080 cy:run"
},
"devDependencies": {
"@angular-builders/custom-webpack": "16.0.1",
"@angular-devkit/build-angular": "16.2.2",
"@angular-devkit/core": "16.2.2",
"@angular-devkit/schematics": "16.2.2",
"@angular/animations": "16.2.5",
"@angular/cli": "~16.2.0",
"@angular/common": "16.2.5",
"@angular/compiler": "16.2.5",
"@angular/compiler-cli": "16.2.5",
"@angular/core": "16.2.5",
"@angular/elements": "16.2.5",
"@angular/forms": "16.2.5",
"@angular/language-service": "16.2.5",
"@angular/platform-browser": "16.2.5",
"@angular/platform-browser-dynamic": "16.2.5",
"@angular/router": "16.2.5",
"@angular-builders/custom-webpack": "17.0.0",
"@angular-devkit/build-angular": "17.0.3",
"@angular-devkit/core": "17.0.3",
"@angular-devkit/schematics": "17.0.3",
"@angular/animations": "17.0.4",
"@angular/cli": "~17.0.0",
"@angular/common": "17.0.4",
"@angular/compiler": "17.0.4",
"@angular/compiler-cli": "17.0.4",
"@angular/core": "17.0.4",
"@angular/elements": "17.0.4",
"@angular/forms": "17.0.4",
"@angular/language-service": "17.0.4",
"@angular/platform-browser": "17.0.4",
"@angular/platform-browser-dynamic": "17.0.4",
"@angular/router": "17.0.4",
"@babel/plugin-proposal-async-generator-functions": "^7.20.7",
"@commitlint/cli": "17.4.0",
"@commitlint/config-conventional": "17.4.0",
"@nx/angular": "16.8.1",
"@nx/workspace": "16.8.1",
"@schematics/angular": "16.2.2",
"@nx/angular": "17.1.3",
"@nx/workspace": "17.1.3",
"@schematics/angular": "17.0.3",
"@types/jest": "29.4.4",
"@types/karma": "^6.1.0",
"@types/node": "^16.11.7",
Expand All @@ -122,12 +123,11 @@
"husky": "^7.0.4",
"jest": "29.4.3",
"jest-environment-jsdom": "29.4.3",
"jest-preset-angular": "13.1.1",
"jest-preset-angular": "13.1.4",
"json5": "^2.2.2",
"lint-staged": "^12.1.1",
"ng-packagr": "16.2.3",
"nx": "16.8.1",
"nx-cloud": "16.4.0",
"ng-packagr": "17.0.2",
"nx": "17.1.3",
"postcss": "^8.3.9",
"postcss-import": "14.1.0",
"postcss-preset-env": "7.5.0",
Expand All @@ -143,9 +143,9 @@
"style-loader": "^3.3.1",
"ts-jest": "29.0.5",
"tslib": "^2.3.0",
"typescript": "5.1.6",
"typescript": "5.2.2",
"webpack-cli": "^4.9.2",
"zone.js": "0.13.1"
"zone.js": "0.14.2"
},
"dependencies": {
"single-spa": ">= 5.4"
Expand Down
Loading

0 comments on commit e482586

Please sign in to comment.