Skip to content

Commit

Permalink
build: upgrade to Angular 13 & NestJS 8
Browse files Browse the repository at this point in the history
  • Loading branch information
wlucha committed Jan 6, 2022
1 parent abefc32 commit e0f922a
Show file tree
Hide file tree
Showing 14 changed files with 8,999 additions and 6,637 deletions.
File renamed without changes.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/.angular/cache
# compiled output
/dist
/node_modules
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
![angular-nest](https://user-images.githubusercontent.com/7531596/82949797-813e0600-9fa4-11ea-8eaa-3101c3f0b092.png)
# Angular + Nest.js
Angular 9 + Nest 7 starter project
# Angular + NestJS
Angular 13 + NestJS 8 starter project
by [@wlucha](https://github.com/wlucha)

## Features
✅ Angular 9+
Nest.js 7+
✅ Angular 13+
NestJS 8+
✅ Jest Unit Testing

## Demo
Expand Down Expand Up @@ -59,7 +59,7 @@ $ npm run test:cov
## License
MIT License

Copyright (c) 2020 Wilfried Lucha
Copyright (c) 2022 Wilfried Lucha

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
26 changes: 9 additions & 17 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,20 @@
"main": "src/angular/main.ts",
"polyfills": "src/angular/polyfills.ts",
"tsConfig": "tsconfig.app.json",
"aot": true,
"assets": [
"src/angular/favicon.ico",
"src/angular/assets"
],
"styles": [
"src/angular/styles.css"
],
"scripts": []
"scripts": [],
"vendorChunk": true,
"extractLicenses": false,
"buildOptimizer": false,
"sourceMap": true,
"optimization": false,
"namedChunks": true
},
"configurations": {
"production": {
Expand All @@ -39,7 +44,6 @@
"optimization": true,
"outputHashing": "all",
"sourceMap": false,
"extractCss": true,
"namedChunks": false,
"extractLicenses": true,
"vendorChunk": false,
Expand All @@ -57,7 +61,8 @@
}
]
}
}
},
"defaultConfiguration": ""
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
Expand Down Expand Up @@ -92,19 +97,6 @@
],
"scripts": []
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"tsConfig": [
"tsconfig.app.json",
"tsconfig.spec.json",
"e2e/tsconfig.json"
],
"exclude": [
"**/node_modules/**"
]
}
}
}
}},
Expand Down
3 changes: 2 additions & 1 deletion nest-cli.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"collection": "@nestjs/schematics",
"sourceRoot": "src/nest"
"sourceRoot": "src/nest",
"entryFile": "nest/main"
}
Loading

0 comments on commit e0f922a

Please sign in to comment.