Skip to content

Commit

Permalink
feat: update to angular v11
Browse files Browse the repository at this point in the history
  • Loading branch information
ThibaudAV committed Apr 13, 2021
1 parent 00208a9 commit 3e85443
Show file tree
Hide file tree
Showing 5 changed files with 2,043 additions and 1,528 deletions.
3 changes: 1 addition & 2 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"prefix": "lib",
"architect": {
"build": {
"builder": "@angular-devkit/build-ng-packagr:build",
"builder": "@angular-devkit/build-angular:ng-packagr",
"options": {
"tsConfig": "projects/ngx-raptorize/tsconfig.lib.json",
"project": "projects/ngx-raptorize/ng-package.json"
Expand Down Expand Up @@ -84,7 +84,6 @@
"optimization": true,
"outputHashing": "all",
"sourceMap": false,
"extractCss": true,
"namedChunks": false,
"extractLicenses": true,
"vendorChunk": false,
Expand Down
43 changes: 20 additions & 23 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,54 +43,51 @@
"pkgRoot": "dist/ngx-raptorize"
},
"dependencies": {
"@angular/animations": "~10.1.6",
"@angular/common": "~10.1.6",
"@angular/compiler": "~10.1.6",
"@angular/core": "~10.1.6",
"@angular/forms": "~10.1.6",
"@angular/platform-browser": "~10.1.6",
"@angular/platform-browser-dynamic": "~10.1.6",
"@angular/router": "~10.1.6",
"rxjs": "~6.6.3",
"tslib": "^2.0.3",
"@angular/animations": "~11.2.9",
"@angular/common": "~11.2.9",
"@angular/compiler": "~11.2.9",
"@angular/core": "~11.2.9",
"@angular/forms": "~11.2.9",
"@angular/platform-browser": "~11.2.9",
"@angular/platform-browser-dynamic": "~11.2.9",
"@angular/router": "~11.2.9",
"rxjs": "~6.6.7",
"tslib": "^2.0.0",
"zone.js": "~0.10.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.1001.7",
"@angular-devkit/build-ng-packagr": "~0.1001.7",
"@angular/cli": "~10.1.7",
"@angular/compiler-cli": "~10.1.6",
"@angular/language-service": "~10.1.6",
"@angular-devkit/build-angular": "~0.1102.8",
"@angular/cli": "~11.2.8",
"@angular/compiler-cli": "~11.2.9",
"@angular/language-service": "~11.2.9",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/jasmine": "~3.5.14",
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "~2.0.3",
"@types/node": "^14.11.10",
"codelyzer": "^6.0.1",
"codelyzer": "^6.0.0",
"husky": "^4.3.0",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~6.0.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~5.2.3",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"ng-packagr": "^10.1.0",
"ng-packagr": "^11.2.4",
"prettier": "^2.1.2",
"protractor": "~7.0.0",
"semantic-release": "^17.2.1",
"ts-node": "~9.0.0",
"tslint": "~6.1.3",
"typescript": "~4.0.3"
},
"peerDependencies": {
"@angular/core": ">=9.0.0"
},
"peerDependencies": {},
"bit": {
"env": {
"compiler": "bit.envs/compilers/angular@9.0.24"
},
"componentsDefaultDirectory": "components/{name}",
"packageManager": "yarn"
}
}
}
1 change: 1 addition & 0 deletions projects/ngx-raptorize/tsconfig.lib.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "../../out-tsc/lib",
"declarationMap": true,
"target": "es2015",
"declaration": true,
"inlineSources": true,
Expand Down
3 changes: 3 additions & 0 deletions projects/ngx-raptorize/tsconfig.lib.prod.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
{
"extends": "./tsconfig.lib.json",
"compilerOptions": {
"declarationMap": false
},
"angularCompilerOptions": {
"enableIvy": false
}
Expand Down
Loading

0 comments on commit 3e85443

Please sign in to comment.