Skip to content

Commit

Permalink
feat: upgrade to Angular and CLI 17
Browse files Browse the repository at this point in the history
BREAKING CHANGE:
`ngx-valdemort` is now based on Angular 17.x. If you want to use it with an older version of Angular, then stick to a previous version of `ngx-valdemort`.
  • Loading branch information
jnizet committed Nov 15, 2023
1 parent 23b0295 commit da9a01d
Show file tree
Hide file tree
Showing 4 changed files with 1,041 additions and 1,338 deletions.
6 changes: 3 additions & 3 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -104,18 +104,18 @@
"builder": "@angular-devkit/build-angular:dev-server",
"configurations": {
"production": {
"browserTarget": "demo:build:production"
"buildTarget": "demo:build:production"
},
"development": {
"browserTarget": "demo:build:development"
"buildTarget": "demo:build:development"
}
},
"defaultConfiguration": "development"
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "demo:build"
"buildTarget": "demo:build"
}
},
"test": {
Expand Down
30 changes: 15 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,16 @@
},
"private": true,
"dependencies": {
"@angular/animations": "16.2.12",
"@angular/animations": "17.0.2",
"@angular/cdk": "16.2.12",
"@angular/common": "16.2.12",
"@angular/compiler": "16.2.12",
"@angular/core": "16.2.12",
"@angular/forms": "16.2.12",
"@angular/common": "17.0.2",
"@angular/compiler": "17.0.2",
"@angular/core": "17.0.2",
"@angular/forms": "17.0.2",
"@angular/material": "16.2.12",
"@angular/platform-browser": "16.2.12",
"@angular/platform-browser-dynamic": "16.2.12",
"@angular/router": "16.2.12",
"@angular/platform-browser": "17.0.2",
"@angular/platform-browser-dynamic": "17.0.2",
"@angular/router": "17.0.2",
"@ng-bootstrap/ng-bootstrap": "15.1.2",
"@popperjs/core": "2.11.8",
"bootstrap": "5.3.2",
Expand All @@ -38,14 +38,14 @@
"zone.js": "0.14.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "16.2.10",
"@angular-devkit/build-angular": "17.0.0",
"@angular-eslint/builder": "17.0.1",
"@angular-eslint/eslint-plugin": "17.0.1",
"@angular-eslint/eslint-plugin-template": "17.0.1",
"@angular-eslint/template-parser": "17.0.1",
"@angular/cli": "16.2.10",
"@angular/compiler-cli": "16.2.12",
"@angular/localize": "16.2.12",
"@angular/cli": "17.0.0",
"@angular/compiler-cli": "17.0.2",
"@angular/localize": "17.0.2",
"@compodoc/compodoc": "1.1.22",
"@types/jasmine": "5.1.2",
"@types/prismjs": "1.26.3",
Expand All @@ -63,10 +63,10 @@
"karma-coverage": "2.2.1",
"karma-jasmine": "5.1.0",
"karma-jasmine-html-reporter": "2.1.0",
"ng-packagr": "16.2.3",
"ng-packagr": "17.0.0",
"ngx-speculoos": "10.0.0",
"prettier": "3.1.0",
"standard-version": "9.5.0",
"typescript": "5.0.4"
"typescript": "5.2.2"
}
}
}
12 changes: 3 additions & 9 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,33 +1,27 @@
{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": "./",
"outDir": "./dist/out-tsc",
"strict": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"esModuleInterop": true,
"sourceMap": true,
"declaration": false,
"module": "esnext",
"module": "ES2022",
"moduleResolution": "node",
"experimentalDecorators": true,
"importHelpers": true,
"target": "ES2022",
"typeRoots": [
"node_modules/@types"
],
"lib": [
"es2018",
"dom"
],
"paths": {
"ngx-valdemort": [
"dist/ngx-valdemort"
],
"ngx-valdemort/*": [
"dist/ngx-valdemort/*"
"./dist/ngx-valdemort"
]
},
"noImplicitAny": true,
Expand Down

0 comments on commit da9a01d

Please sign in to comment.