Skip to content

Commit d738214

Browse files
authored
Merge pull request #1280 from valor-software/cleanup-excessive-dependencies
fix(dependecies): clean up excessive peerDependencies
2 parents aa2e801 + f879a2a commit d738214

File tree

6 files changed

+19
-14
lines changed

6 files changed

+19
-14
lines changed

.eslintrc.json

-7
Original file line numberDiff line numberDiff line change
@@ -61,13 +61,6 @@
6161
"plugin:@nx/javascript"
6262
],
6363
"rules": {}
64-
},
65-
{
66-
"files": ["*.json"],
67-
"parser": "jsonc-eslint-parser",
68-
"rules": {
69-
"@nx/dependency-checks": "error"
70-
}
7164
}
7265
]
7366
}

CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
## [7.0.1](https://github.com/valor-software/ng2-file-upload/compare/v7.0.0...v7.0.1) (2024-07-17)
2+
3+
4+
### Bug Fixes
5+
6+
* **dependencies:** removed excessive parts from peerDependencies ([3a7d086](https://github.com/valor-software/ng2-file-upload/commit/3a7d086927e1ad1e95ee94d4ad7b09fa3834cfc1))
7+
8+
9+
110
# [7.0.0](https://github.com/valor-software/ng2-file-upload/compare/v6.0.0...v7.0.0) (2024-07-15)
211

312

libs/ng2-file-upload/.eslintrc.json

+6-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,12 @@
1010
"files": ["*.json"],
1111
"parser": "jsonc-eslint-parser",
1212
"rules": {
13-
"@nx/dependency-checks": "error"
13+
"@nx/dependency-checks": [
14+
"error",
15+
{
16+
"ignoredFiles": ["**/*.spec.ts", "**/test-setup.ts"]
17+
}
18+
]
1419
}
1520
},
1621
{

libs/ng2-file-upload/package.json

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
{
22
"name": "ng2-file-upload",
3-
"version": "7.0.0",
3+
"version": "7.0.1",
44
"description": "Angular file uploader",
55
"author": "Dmitriy Shekhovtsov <[email protected]>",
66
"license": "MIT",
77
"peerDependencies": {
88
"@angular/core": "^18.0.0",
9-
"@angular/platform-browser": "^18.0.0",
10-
"jest-preset-angular": "14.1.0",
119
"@angular/common": "^18.0.0"
1210
},
1311
"sideEffects": false,

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ng2-file-upload-demo",
3-
"version": "7.0.0",
3+
"version": "7.0.1",
44
"private": true,
55
"description": "Angular file upload directives",
66
"scripts": {

0 commit comments

Comments
 (0)