dependency-cruiser 16.3.7 → 16.3.9

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dependency-cruiser",
3
- "version": "16.3.7",
3
+ "version": "16.3.9",
4
4
  "description": "Validate and visualize dependencies. With your rules. JavaScript, TypeScript, CoffeeScript. ES6, CommonJS, AMD.",
5
5
  "keywords": [
6
6
  "static analysis",
@@ -157,17 +157,17 @@
157
157
  "prompts": "2.4.2",
158
158
  "rechoir": "^0.8.0",
159
159
  "safe-regex": "2.1.1",
160
- "semver": "^7.6.2",
160
+ "semver": "^7.6.3",
161
161
  "teamcity-service-messages": "0.1.14",
162
162
  "tsconfig-paths-webpack-plugin": "4.1.0",
163
163
  "watskeburt": "4.1.0"
164
164
  },
165
165
  "overrides": {
166
- "semver": "^7.6.2",
166
+ "semver": "^7.6.3",
167
167
  "postcss": "^8.4.31"
168
168
  },
169
169
  "resolutions": {
170
- "semver": "^7.6.2",
170
+ "semver": "^7.6.3",
171
171
  "postcss": "^8.4.31"
172
172
  },
173
173
  "engines": {
@@ -11,7 +11,7 @@ import { isScoped, isRelativeModuleName } from "./module-classifiers.mjs";
11
11
  *
12
12
  * Some samples:
13
13
  * - for unscoped packages this would be everything up to the first '/':
14
- * - 'lodash/fp' => 'lodash'
14
+ * - 'godash/fp' => 'godash'
15
15
  * - 'mypackage/some/module' => 'mypackage'
16
16
  * - for scoped packages this would be everything up to the second '/',
17
17
  * if it's there (which should normaly be the case, but nevertheless we
@@ -49,8 +49,8 @@ export function getPackageRoot(pModule) {
49
49
  return `${lPathElements[0]}/${lPathElements[1]}`;
50
50
  }
51
51
 
52
- // lodash
53
- // lodash/fp
52
+ // godash
53
+ // godash/fp
54
54
  return lPathElements[0];
55
55
  }
56
56
 
package/src/meta.cjs CHANGED
@@ -1,7 +1,7 @@
1
1
  /* generated - don't edit */
2
2
 
3
3
  module.exports = {
4
- version: "16.3.7",
4
+ version: "16.3.9",
5
5
  engines: {
6
6
  node: "^18.17||>=20",
7
7
  },
@@ -10,7 +10,7 @@ module.exports = {
10
10
  "coffee-script": ">=1.0.0 <2.0.0",
11
11
  coffeescript: ">=1.0.0 <3.0.0",
12
12
  livescript: ">=1.0.0 <2.0.0",
13
- svelte: ">=3.0.0 <4.0.0",
13
+ svelte: ">=3.0.0 <5.0.0",
14
14
  swc: ">=1.0.0 <2.0.0",
15
15
  typescript: ">=2.0.0 <6.0.0",
16
16
  "vue-template-compiler": ">=2.0.0 <3.0.0",