@cloud-ru/ft-deps-validator 2.0.0 → 2.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## 2.0.1 (2026-01-19)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **FF-6693:** expand list of ignored file patterns ([83b5321](https://github.com/cloud-ru-tech/frontend-tools/commit/83b53218c0d12f7b380f4d9f3ccd5fe9274fd99d))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# 2.0.0 (2025-12-30)
|
|
7
18
|
|
|
8
19
|
|
|
@@ -13,7 +13,7 @@ function getEnvironment() {
|
|
|
13
13
|
const defaultConfig = {
|
|
14
14
|
cwd: process.cwd(),
|
|
15
15
|
ignoredPackagesFolderFiles: ['packages/tsconfig.cjs.json', 'packages/tsconfig.esm.json'],
|
|
16
|
-
ignoreFilePatterns: ['stories', 'dist', '__tests__', '__e2e__'],
|
|
16
|
+
ignoreFilePatterns: ['stories', 'dist', '__tests__', '__test__', '__e2e__', '__unit__'],
|
|
17
17
|
ignorePackagePatterns: [
|
|
18
18
|
'react',
|
|
19
19
|
'react-dom',
|
|
@@ -6,7 +6,7 @@ export function getEnvironment() {
|
|
|
6
6
|
const defaultConfig = {
|
|
7
7
|
cwd: process.cwd(),
|
|
8
8
|
ignoredPackagesFolderFiles: ['packages/tsconfig.cjs.json', 'packages/tsconfig.esm.json'],
|
|
9
|
-
ignoreFilePatterns: ['stories', 'dist', '__tests__', '__e2e__'],
|
|
9
|
+
ignoreFilePatterns: ['stories', 'dist', '__tests__', '__test__', '__e2e__', '__unit__'],
|
|
10
10
|
ignorePackagePatterns: [
|
|
11
11
|
'react',
|
|
12
12
|
'react-dom',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cloud-ru/ft-deps-validator",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.1",
|
|
4
4
|
"description": "Validator for unused, missing or wrong version dependencies in monorepo's packages",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -38,5 +38,5 @@
|
|
|
38
38
|
"glob": "10.5.0",
|
|
39
39
|
"yargs": "18.0.0"
|
|
40
40
|
},
|
|
41
|
-
"gitHead": "
|
|
41
|
+
"gitHead": "6639c70161ba3e9d8f68c2688cd97c8a8b2910b0"
|
|
42
42
|
}
|
|
@@ -9,7 +9,7 @@ export function getEnvironment(): MonorepoEnvType | RepoEnvType {
|
|
|
9
9
|
const defaultConfig = {
|
|
10
10
|
cwd: process.cwd(),
|
|
11
11
|
ignoredPackagesFolderFiles: ['packages/tsconfig.cjs.json', 'packages/tsconfig.esm.json'],
|
|
12
|
-
ignoreFilePatterns: ['stories', 'dist', '__tests__', '__e2e__'],
|
|
12
|
+
ignoreFilePatterns: ['stories', 'dist', '__tests__', '__test__', '__e2e__', '__unit__'],
|
|
13
13
|
ignorePackagePatterns: [
|
|
14
14
|
'react',
|
|
15
15
|
'react-dom',
|