@leancodepl/folder-structure-cruiser 9.5.2 → 9.6.0
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 +21 -0
- package/README.md +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,27 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See
|
|
4
4
|
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [9.6.0](https://github.com/leancodepl/js_corelibrary/compare/v9.5.3...v9.6.0) (2025-09-05)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @leancodepl/folder-structure-cruiser
|
|
9
|
+
|
|
10
|
+
# Change Log
|
|
11
|
+
|
|
12
|
+
All notable changes to this project will be documented in this file. See
|
|
13
|
+
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
14
|
+
|
|
15
|
+
## [9.5.3](https://github.com/leancodepl/js_corelibrary/compare/v9.5.2...v9.5.3) (2025-08-26)
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
- adjust readme example
|
|
20
|
+
([359aac4](https://github.com/leancodepl/js_corelibrary/commit/359aac4ac7b02b4c8ac677eac30330e5b2e1bf3d))
|
|
21
|
+
|
|
22
|
+
# Change Log
|
|
23
|
+
|
|
24
|
+
All notable changes to this project will be documented in this file. See
|
|
25
|
+
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
26
|
+
|
|
6
27
|
## [9.5.2](https://github.com/leancodepl/js_corelibrary/compare/v9.5.1...v9.5.2) (2025-08-13)
|
|
7
28
|
|
|
8
29
|
### Bug Fixes
|
package/README.md
CHANGED
|
@@ -126,10 +126,10 @@ Configure folder-structure-cruiser commands as Nx target in your `project.json`.
|
|
|
126
126
|
"defaultConfiguration": "validate-cross-feature-imports",
|
|
127
127
|
"configurations": {
|
|
128
128
|
"validate-cross-feature-imports": {
|
|
129
|
-
"command": "npx @leancodepl/folder-structure-cruiser validate-cross-feature-imports --config ./.dependency-cruiser.json --
|
|
129
|
+
"command": "npx @leancodepl/folder-structure-cruiser validate-cross-feature-imports --config ./.dependency-cruiser.json --tsConfig ./tsconfig.base.json --directory '{projectRoot}'"
|
|
130
130
|
},
|
|
131
131
|
"validate-shared-components": {
|
|
132
|
-
"command": "npx @leancodepl/folder-structure-cruiser validate-shared-components --config ./.dependency-cruiser.json --
|
|
132
|
+
"command": "npx @leancodepl/folder-structure-cruiser validate-shared-components --config ./.dependency-cruiser.json --tsConfig ./tsconfig.base.json --directory '{projectRoot}'"
|
|
133
133
|
},
|
|
134
134
|
"validate-no-orphans": {
|
|
135
135
|
"command": "npx depcruise --ts-config ./tsconfig.base.json --config ./.dependency-cruiser.json '{projectRoot}/.*'"
|