Skip to content

Commit

Permalink
feat(Dependencies): Upgrade all angular deps plus ngx-observable-life…
Browse files Browse the repository at this point in the history
…cycle to latest, enable ivy compilation of lib
  • Loading branch information
zak-cloudnc authored and zakhenry committed Jan 4, 2022
1 parent bf31e69 commit 4ba0abb
Show file tree
Hide file tree
Showing 5 changed files with 912 additions and 851 deletions.
30 changes: 15 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,36 +37,36 @@
},
"private": true,
"dependencies": {
"@angular/animations": "13.0.2",
"@angular/cdk": "13.0.2",
"@angular/common": "13.0.2",
"@angular/compiler": "13.0.2",
"@angular/core": "13.0.2",
"@angular/forms": "13.0.2",
"@angular/material": "13.0.2",
"@angular/platform-browser": "13.0.2",
"@angular/platform-browser-dynamic": "13.0.2",
"@angular/router": "13.0.2",
"@angular/animations": "13.1.1",
"@angular/cdk": "13.1.1",
"@angular/common": "13.1.1",
"@angular/compiler": "13.1.1",
"@angular/core": "13.1.1",
"@angular/forms": "13.1.1",
"@angular/material": "13.1.1",
"@angular/platform-browser": "13.1.1",
"@angular/platform-browser-dynamic": "13.1.1",
"@angular/router": "13.1.1",
"@types/uuid": "3.4.7",
"commitizen": "4.0.3",
"core-js": "3.6.4",
"fast-deep-equal": "3.1.1",
"ngx-observable-lifecycle": "2.1.4",
"ngx-observable-lifecycle": "2.2.1",
"rxjs": "7.4.0",
"tslib": "^2.3.1",
"uuid": "3.4.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "13.0.3",
"@angular-devkit/build-angular": "13.1.2",
"@angular-eslint/builder": "13.0.1",
"@angular-eslint/eslint-plugin": "13.0.1",
"@angular-eslint/eslint-plugin-template": "13.0.1",
"@angular-eslint/schematics": "13.0.1",
"@angular-eslint/template-parser": "13.0.1",
"@angular/cli": "13.0.3",
"@angular/compiler-cli": "13.0.2",
"@angular/language-service": "13.0.2",
"@angular/cli": "13.1.2",
"@angular/compiler-cli": "13.1.1",
"@angular/language-service": "13.1.1",
"@bahmutov/add-typescript-to-cypress": "2.1.2",
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "2.0.8",
Expand Down
3 changes: 2 additions & 1 deletion projects/ngx-sub-form/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
"@angular/common": ">= 10 < 13",
"@angular/core": ">= 10 < 13",
"@angular/forms": ">= 10 < 13",
"ngx-observable-lifecycle": "^2.1.4"
"ngx-observable-lifecycle": "^2.1.4",
"rxjs": "^6.5.4 || ^7.4.0"
},
"keywords": [
"Angular",
Expand Down
2 changes: 1 addition & 1 deletion projects/ngx-sub-form/src/lib/helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export const getControlValueAccessorBindings = <ControlInterface>(
registerOnTouched$$.next(fn);
},
setDisabledState: (shouldDisable: boolean | undefined): void => {
setDisabledState$$.next(shouldDisable);
setDisabledState$$.next(!!shouldDisable);
},
};

Expand Down
1 change: 1 addition & 0 deletions projects/ngx-sub-form/tsconfig.lib.prod.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"declarationMap": false
},
"angularCompilerOptions": {
"enableIvy": true,
"compilationMode": "partial"
}
}
Loading

0 comments on commit 4ba0abb

Please sign in to comment.