Skip to content

Commit

Permalink
perf: upgrade to Angular 15
Browse files Browse the repository at this point in the history
  • Loading branch information
keenthekeen committed Mar 9, 2023
1 parent e0033c8 commit 7c8fe30
Show file tree
Hide file tree
Showing 22 changed files with 30,091 additions and 31,460 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ $RECYCLE.BIN/
log.txt
npm-debug.log*

/.angular
/.firebase
/.idea
/.ionic
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

an Ionic-based client for video streaming platform "Flick"

Copyright © 2020-2021 Siwat Techavoranant
Copyright © 2020-2023 Siwat Techavoranant
30 changes: 20 additions & 10 deletions angular.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"defaultProject": "app",
"newProjectRoot": "projects",
"projects": {
"app": {
Expand Down Expand Up @@ -82,22 +81,28 @@
}
],
"progress": false
}
}
},
"development": {}
},
"defaultConfiguration": "production"
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"options": {
"browserTarget": "app:build"
"browserTarget": "app:build:development"
},
"configurations": {
"production": {
"browserTarget": "app:build:production"
},
"ci": {
"progress": false
},
"development": {
"browserTarget": "app:build:development"
}
}
},
"defaultConfiguration": "development"
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
Expand Down Expand Up @@ -151,17 +156,20 @@
"e2e": {
"builder": "@angular-devkit/build-angular:protractor",
"options": {
"protractorConfig": "e2e/protractor.conf.js",
"devServerTarget": "app:serve"
"protractorConfig": "e2e/protractor.conf.js"
},
"configurations": {
"production": {
"devServerTarget": "app:serve:production"
},
"ci": {
"devServerTarget": "app:serve:ci"
},
"development": {
"devServerTarget": "app:serve:development"
}
}
},
"defaultConfiguration": "development"
},
"ionic-cordova-build": {
"builder": "@ionic/angular-toolkit:cordova-build",
Expand Down Expand Up @@ -195,8 +203,10 @@
}
},
"cli": {
"defaultCollection": "@ionic/angular-toolkit",
"analytics": "a68a0485-6e9d-44a5-b42d-924ea1260442"
"analytics": "a68a0485-6e9d-44a5-b42d-924ea1260442",
"schematicCollections": [
"@ionic/angular-toolkit"
]
},
"schematics": {
"@ionic/angular-toolkit:component": {
Expand Down
Loading

0 comments on commit 7c8fe30

Please sign in to comment.