Skip to content

Commit

Permalink
upgraded to angular 14 (#515)
Browse files Browse the repository at this point in the history
* upgraded to angular 14

- updated dependency versions and applied fixes for breaking changes
- fixed resizing editor sidenav
- fixed resizing project container
- fixed closeTab eventemitter type
- added project name to build commands due to removal of default project setting

* fixed LGTM alerts

- removed unused imports
- fixed delete function name using reserved word

* remove unused angular playground
  • Loading branch information
sei-aschlackman authored Nov 18, 2022
1 parent 895e6ce commit 5dd0d14
Show file tree
Hide file tree
Showing 61 changed files with 22,335 additions and 38,551 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -60,3 +60,5 @@ src/assets/config/settings.[Ee]nv.json
/docker/**/*.json
/docker/**/gitconfig
/docker/docker-compose

.angular/cache
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ WORKDIR /ng-app

COPY . .

RUN $(npm bin)/ng build --resources-output-path=assets/fonts --aot --configuration production
RUN $(npm bin)/ng build caster-ui --resources-output-path=assets/fonts --aot --configuration production

### Stage 2: Setup ###

Expand Down
6 changes: 0 additions & 6 deletions angular-playground.json

This file was deleted.

56 changes: 3 additions & 53 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -138,59 +138,9 @@
}
}
}
},
"playground": {
"root": "",
"sourceRoot": "src",
"projectType": "application",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"options": {
"outputPath": "dist/playground",
"index": "src/index.html",
"main": "src/main.playground.ts",
"polyfills": "src/polyfills.ts",
"tsConfig": "tsconfig.playground.json",
"aot": false,
"assets": ["src/favicon.ico", "src/assets"],
"styles": ["src/styles.scss"],
"scripts": [],
"vendorChunk": true,
"extractLicenses": false,
"buildOptimizer": false,
"sourceMap": true,
"optimization": false,
"namedChunks": true,
"serviceWorker": false
},
"configurations": {
"production": {
"fileReplacements": [
{
"replace": "src/environments/environment.ts",
"with": "src/environments/environment.prod.ts"
}
],
"optimization": true,
"outputHashing": "all",
"sourceMap": false,
"namedChunks": false,
"extractLicenses": true,
"vendorChunk": false,
"buildOptimizer": true
}
}
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"options": {
"browserTarget": "playground:build",
"port": 4201
}
}
}
}
},
"defaultProject": "caster-ui"
"cli": {
"analytics": false
}
}
Loading

0 comments on commit 5dd0d14

Please sign in to comment.