Feature/upgrade nx to version 12.8.0 (#331)

* Upgrade angular and Nx

* Update changelog
pull/337/head
Thomas Kaul 3 years ago committed by GitHub
parent ad96d6e53e
commit d046f1d498
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -15,6 +15,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
- Restructured the allocations page
- Upgraded `angular` from version `12.0.4` to `12.2.4`
- Upgraded `@angular/cdk` and `@angular/material` from version `12.0.6` to `12.2.4`
- Upgraded `Nx` from version `12.5.4` to `12.8.0`
- Upgraded `prisma` from version `2.24.1` to `2.30.2`
### Fixed

@ -1,7 +1,3 @@
module.exports = {
projects: [
'<rootDir>/apps/api',
'<rootDir>/apps/client',
'<rootDir>/libs/common'
]
};
const { getJestProjects } = require('@nrwl/jest');
module.exports = { projects: getJestProjects() };

@ -13,7 +13,7 @@ export const currencyPairs: Partial<
currency1: Currency;
currency2: Currency;
}
>[] = Object.keys(Currency)
>[] = (Object.keys(Currency) as Array<keyof typeof Currency>)
.filter((currency) => {
return currency !== Currency.USD;
})

@ -45,16 +45,16 @@
"workspace-generator": "nx workspace-generator"
},
"dependencies": {
"@angular/animations": "12.0.4",
"@angular/cdk": "12.0.6",
"@angular/common": "12.0.4",
"@angular/compiler": "12.0.4",
"@angular/core": "12.0.4",
"@angular/forms": "12.0.4",
"@angular/material": "12.0.6",
"@angular/platform-browser": "12.0.4",
"@angular/platform-browser-dynamic": "12.0.4",
"@angular/router": "12.0.4",
"@angular/animations": "12.2.4",
"@angular/cdk": "12.2.4",
"@angular/common": "12.2.4",
"@angular/compiler": "12.2.4",
"@angular/core": "12.2.4",
"@angular/forms": "12.2.4",
"@angular/material": "12.2.4",
"@angular/platform-browser": "12.2.4",
"@angular/platform-browser-dynamic": "12.2.4",
"@angular/router": "12.2.4",
"@codewithdan/observable-store": "2.2.11",
"@nestjs/common": "7.6.18",
"@nestjs/config": "0.6.3",
@ -64,7 +64,7 @@
"@nestjs/platform-express": "7.6.18",
"@nestjs/schedule": "0.4.3",
"@nestjs/serve-static": "2.1.4",
"@nrwl/angular": "12.5.4",
"@nrwl/angular": "12.8.0",
"@prisma/client": "2.30.2",
"@simplewebauthn/browser": "3.0.0",
"@simplewebauthn/server": "3.0.0",
@ -109,22 +109,22 @@
"zone.js": "0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "12.0.4",
"@angular-eslint/eslint-plugin": "12.0.0",
"@angular/cli": "12.0.4",
"@angular/compiler-cli": "12.0.4",
"@angular/language-service": "12.0.4",
"@angular/localize": "12.0.5",
"@angular-devkit/build-angular": "12.2.4",
"@angular-eslint/eslint-plugin": "12.3.1",
"@angular/cli": "12.2.4",
"@angular/compiler-cli": "12.2.4",
"@angular/language-service": "12.2.4",
"@angular/localize": "12.2.4",
"@nestjs/schematics": "7.3.1",
"@nestjs/testing": "7.6.18",
"@nrwl/cli": "12.5.4",
"@nrwl/cypress": "12.5.4",
"@nrwl/eslint-plugin-nx": "12.5.4",
"@nrwl/jest": "12.5.4",
"@nrwl/nest": "12.5.4",
"@nrwl/node": "12.5.4",
"@nrwl/tao": "12.5.4",
"@nrwl/workspace": "12.5.4",
"@nrwl/cli": "12.8.0",
"@nrwl/cypress": "12.8.0",
"@nrwl/eslint-plugin-nx": "12.8.0",
"@nrwl/jest": "12.8.0",
"@nrwl/nest": "12.8.0",
"@nrwl/node": "12.8.0",
"@nrwl/tao": "12.8.0",
"@nrwl/workspace": "12.8.0",
"@types/big.js": "6.1.1",
"@types/cache-manager": "3.4.0",
"@types/color": "3.0.2",
@ -136,7 +136,7 @@
"@typescript-eslint/parser": "4.27.0",
"codelyzer": "6.0.1",
"cypress": "6.2.1",
"dotenv": "8.2.0",
"dotenv": "10.0.0",
"eslint": "7.28.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.23.4",
@ -150,7 +150,7 @@
"rimraf": "3.0.2",
"ts-jest": "27.0.3",
"ts-node": "9.1.1",
"typescript": "4.2.4"
"typescript": "4.3.5"
},
"engines": {
"node": ">=14"

File diff suppressed because it is too large Load Diff
Loading…
Cancel
Save