Skip to content

Commit

Permalink
feat: upgrade to angular v16
Browse files Browse the repository at this point in the history
  • Loading branch information
sibiraj-s committed Jul 15, 2023
1 parent f864e30 commit 4a9e7d0
Show file tree
Hide file tree
Showing 17 changed files with 4,856 additions and 5,003 deletions.
33 changes: 15 additions & 18 deletions angular.json
Expand Up @@ -7,7 +7,7 @@
"projectType": "library",
"root": "projects/ngx-editor",
"sourceRoot": "projects/ngx-editor/src",
"prefix": "ngx",
"prefix": "lib",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:ng-packagr",
Expand All @@ -27,9 +27,11 @@
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"main": "projects/ngx-editor/src/test.ts",
"tsConfig": "projects/ngx-editor/tsconfig.spec.json",
"karmaConfig": "projects/ngx-editor/karma.conf.js"
"polyfills": [
"zone.js",
"zone.js/testing"
]
}
},
"lint": {
Expand All @@ -48,9 +50,6 @@
"schematics": {
"@schematics/angular:component": {
"style": "scss"
},
"@schematics/angular:application": {
"strict": true
}
},
"root": "projects/demo",
Expand All @@ -63,7 +62,9 @@
"outputPath": "dist/demo",
"index": "projects/demo/src/index.html",
"main": "projects/demo/src/main.ts",
"polyfills": "projects/demo/src/polyfills.ts",
"polyfills": [
"zone.js"
],
"tsConfig": "projects/demo/tsconfig.app.json",
"inlineStyleLanguage": "scss",
"assets": [
Expand All @@ -89,12 +90,6 @@
"maximumError": "4kb"
}
],
"fileReplacements": [
{
"replace": "projects/demo/src/environments/environment.ts",
"with": "projects/demo/src/environments/environment.prod.ts"
}
],
"outputHashing": "all"
},
"development": {
Expand Down Expand Up @@ -129,10 +124,11 @@
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"main": "projects/demo/src/test.ts",
"polyfills": "projects/demo/src/polyfills.ts",
"polyfills": [
"zone.js",
"zone.js/testing"
],
"tsConfig": "projects/demo/tsconfig.spec.json",
"karmaConfig": "projects/demo/karma.conf.js",
"inlineStyleLanguage": "scss",
"assets": [
"projects/demo/src/favicon.ico",
Expand All @@ -156,9 +152,10 @@
}
}
},
"defaultProject": "ngx-editor",
"cli": {
"defaultCollection": "@angular-eslint/schematics",
"schematicCollections": [
"@angular-eslint/schematics"
],
"analytics": false
}
}

0 comments on commit 4a9e7d0

Please sign in to comment.