Skip to content

Commit

Permalink
Merge pull request #228 from btroncone/feature/upgrade-v14
Browse files Browse the repository at this point in the history
feat: upgrade to Angular 14 and Node 16
  • Loading branch information
BBlackwo authored Jun 30, 2022
2 parents 2a0de9a + adc7966 commit ed35a54
Show file tree
Hide file tree
Showing 8 changed files with 33,541 additions and 17,563 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ version: 2
defaults: &defaults
working_directory: ~/repo
docker:
- image: cimg/node:14.17.0
- image: cimg/node:16.15.1

jobs:
install-lint-build-test:
Expand Down
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
16
77 changes: 39 additions & 38 deletions angular.json
Original file line number Diff line number Diff line change
@@ -1,43 +1,44 @@
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"newProjectRoot": "projects",
"projects": {
"lib": {
"projectType": "library",
"root": "projects/lib",
"sourceRoot": "projects/lib/src",
"prefix": "lib",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:ng-packagr",
"options": {
"project": "projects/lib/ng-package.json"
},
"configurations": {
"production": {
"tsConfig": "projects/lib/tsconfig.lib.prod.json"
},
"development": {
"tsConfig": "projects/lib/tsconfig.lib.json"
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"newProjectRoot": "projects",
"projects": {
"lib": {
"projectType": "library",
"root": "projects/lib",
"sourceRoot": "projects/lib/src",
"prefix": "lib",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:ng-packagr",
"options": {
"project": "projects/lib/ng-package.json"
},
"configurations": {
"production": {
"tsConfig": "projects/lib/tsconfig.lib.prod.json"
},
"development": {
"tsConfig": "projects/lib/tsconfig.lib.json"
}
},
"defaultConfiguration": "production"
},
"lint": {
"builder": "@angular-eslint/builder:lint",
"options": {
"lintFilePatterns": [
"projects/lib/**/*.ts",
"projects/lib/**/*.html"
]
}
}
}
},
"defaultConfiguration": "production"
},
"lint": {
"builder": "@angular-eslint/builder:lint",
"options": {
"lintFilePatterns": [
"projects/lib/**/*.ts",
"projects/lib/**/*.html"
]
}
}
}
},
"cli": {
"schematicCollections": [
"@angular-eslint/schematics"
]
}
},
"defaultProject": "lib",
"cli": {
"defaultCollection": "@angular-eslint/schematics"
}
}
Loading

0 comments on commit ed35a54

Please sign in to comment.