dependency-cruiser 17.4.0 → 17.4.2
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/package.json +3 -24
- package/src/cli/normalize-cli-options.mjs +1 -1
- package/src/meta.cjs +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dependency-cruiser",
|
|
3
|
-
"version": "17.4.
|
|
3
|
+
"version": "17.4.2",
|
|
4
4
|
"description": "Validate and visualize dependencies. With your rules. JavaScript, TypeScript, CoffeeScript. ES6, CommonJS, AMD.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"static analysis",
|
|
@@ -149,7 +149,7 @@
|
|
|
149
149
|
"acorn-loose": "8.5.2",
|
|
150
150
|
"acorn-walk": "8.3.5",
|
|
151
151
|
"commander": "14.0.3",
|
|
152
|
-
"enhanced-resolve": "5.
|
|
152
|
+
"enhanced-resolve": "5.22.0",
|
|
153
153
|
"ignore": "7.0.5",
|
|
154
154
|
"interpret": "3.1.1",
|
|
155
155
|
"is-installed-globally": "1.0.0",
|
|
@@ -158,31 +158,10 @@
|
|
|
158
158
|
"prompts": "2.4.2",
|
|
159
159
|
"rechoir": "0.8.0",
|
|
160
160
|
"safe-regex": "2.1.1",
|
|
161
|
-
"semver": "7.
|
|
161
|
+
"semver": "7.8.1",
|
|
162
162
|
"tsconfig-paths-webpack-plugin": "4.2.0",
|
|
163
163
|
"watskeburt": "5.0.3"
|
|
164
164
|
},
|
|
165
|
-
"overrides": {
|
|
166
|
-
"upem": {
|
|
167
|
-
"@npmcli/map-workspaces": {
|
|
168
|
-
"minimatch": "^10.2.4"
|
|
169
|
-
}
|
|
170
|
-
},
|
|
171
|
-
"@typescript-eslint/typescript-estree": {
|
|
172
|
-
"minimatch": "^10.2.4"
|
|
173
|
-
},
|
|
174
|
-
"baseline-browser-mapping": "^2.9.15",
|
|
175
|
-
"c8": {
|
|
176
|
-
"glob": "^13.0.3",
|
|
177
|
-
"yargs": "^18.0.0"
|
|
178
|
-
},
|
|
179
|
-
"mocha": {
|
|
180
|
-
"diff": "^8.0.3",
|
|
181
|
-
"glob": "^13.0.3",
|
|
182
|
-
"minimatch": "^10.2.4",
|
|
183
|
-
"serialize-javascript": "^7.0.3"
|
|
184
|
-
}
|
|
185
|
-
},
|
|
186
165
|
"engines": {
|
|
187
166
|
"node": "^20.12||^22||>=24"
|
|
188
167
|
},
|
|
@@ -70,7 +70,7 @@ function validateAndGetDefaultRulesFileName() {
|
|
|
70
70
|
|
|
71
71
|
if (typeof lReturnValue === "undefined") {
|
|
72
72
|
throw new TypeError(
|
|
73
|
-
`Can't open a config file (.dependency-cruiser.(c)js) at the default location. Does it exist?\n` +
|
|
73
|
+
`Can't open a config file (.dependency-cruiser.(c|m)js) at the default location. Does it exist?\n` +
|
|
74
74
|
` - You can create one by running 'npx dependency-cruiser --init'\n` +
|
|
75
75
|
` - Want to run a without a config file? Use --no-config\n`,
|
|
76
76
|
);
|