Skip to content

Commit

Permalink
Merge pull request #117 from cloudnc/fix/remove-lodash-es
Browse files Browse the repository at this point in the history
remove lodash-es dependency
  • Loading branch information
zak-cloudnc authored Dec 2, 2019
2 parents 2499b90 + 04dafb3 commit e01e19a
Show file tree
Hide file tree
Showing 6 changed files with 1,538 additions and 615 deletions.
35 changes: 17 additions & 18 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,32 +34,31 @@
},
"private": true,
"dependencies": {
"@angular/animations": "8.0.0",
"@angular/cdk": "8.0.1",
"@angular/common": "8.0.0",
"@angular/compiler": "8.0.0",
"@angular/core": "8.0.0",
"@angular/forms": "8.0.0",
"@angular/animations": "8.2.14",
"@angular/cdk": "8.2.3",
"@angular/common": "8.2.14",
"@angular/compiler": "8.2.14",
"@angular/core": "8.2.14",
"@angular/forms": "8.2.14",
"@angular/http": "7.2.15",
"@angular/material": "8.0.1",
"@angular/platform-browser": "8.0.0",
"@angular/platform-browser-dynamic": "8.0.0",
"@angular/router": "8.0.0",
"@types/lodash-es": "4.17.3",
"@angular/material": "8.2.3",
"@angular/platform-browser": "8.2.14",
"@angular/platform-browser-dynamic": "8.2.14",
"@angular/router": "8.2.14",
"@types/uuid": "3.4.4",
"commitizen": "3.1.1",
"core-js": "3.1.3",
"lodash-es": "4.17.11",
"fast-deep-equal": "3.0.1",
"rxjs": "6.5.2",
"uuid": "3.3.2",
"zone.js": "0.9.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "0.800.2",
"@angular-devkit/build-ng-packagr": "0.800.2",
"@angular/cli": "8.0.2",
"@angular/compiler-cli": "8.0.0",
"@angular/language-service": "8.0.0",
"@angular-devkit/build-angular": "0.803.20",
"@angular-devkit/build-ng-packagr": "0.803.20",
"@angular/cli": "8.3.20",
"@angular/compiler-cli": "8.2.14",
"@angular/language-service": "8.2.14",
"@bahmutov/add-typescript-to-cypress": "2.1.2",
"@types/jasmine": "3.3.13",
"@types/jasminewd2": "2.0.6",
Expand All @@ -76,7 +75,7 @@
"karma-coverage-istanbul-reporter": "2.0.5",
"karma-jasmine": "2.0.1",
"karma-jasmine-html-reporter": "1.4.2",
"ng-packagr": "5.3.0",
"ng-packagr": "5.7.1",
"prettier": "1.16.4",
"semantic-release": "15.13.12",
"ts-node": "8.2.0",
Expand Down
2 changes: 1 addition & 1 deletion projects/ngx-sub-form/ng-package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
"lib": {
"entryFile": "src/public_api.ts"
},
"whitelistedNonPeerDependencies": ["lodash-es"]
"whitelistedNonPeerDependencies": ["fast-deep-equal"]
}
2 changes: 1 addition & 1 deletion projects/ngx-sub-form/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "0.0.1",
"license": "MIT",
"dependencies": {
"lodash-es": "^4.17.0"
"fast-deep-equal": "^3.0.1"
},
"peerDependencies": {
"@angular/common": "^8.0.0",
Expand Down
2 changes: 1 addition & 1 deletion projects/ngx-sub-form/src/lib/ngx-root-form.component.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { EventEmitter, OnInit, Input } from '@angular/core';
import isEqual from 'lodash-es/isEqual';
import isEqual from 'fast-deep-equal';
import { BehaviorSubject, Subject } from 'rxjs';
import { filter, tap } from 'rxjs/operators';
import { NgxSubFormRemapComponent } from './ngx-sub-form.component';
Expand Down
1 change: 1 addition & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictPropertyInitialization": true,
"allowSyntheticDefaultImports": true,
"stripInternal": true,
"target": "es5",
"typeRoots": ["node_modules/@types"],
Expand Down
Loading

0 comments on commit e01e19a

Please sign in to comment.