dependency-cruiser 13.0.0-beta-2 → 13.0.0-beta-3

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": "13.0.0-beta-2",
3
+ "version": "13.0.0-beta-3",
4
4
  "description": "Validate and visualize dependencies. With your rules. JavaScript, TypeScript, CoffeeScript. ES6, CommonJS, AMD.",
5
5
  "keywords": [
6
6
  "static analysis",
@@ -149,10 +149,10 @@
149
149
  "ajv": "8.12.0",
150
150
  "chalk": "5.2.0",
151
151
  "commander": "10.0.1",
152
- "enhanced-resolve": "5.12.0",
152
+ "enhanced-resolve": "5.13.0",
153
153
  "figures": "5.0.0",
154
154
  "get-stream": "^6.0.1",
155
- "glob": "10.1.0",
155
+ "glob": "10.2.1",
156
156
  "handlebars": "4.7.7",
157
157
  "ignore": "5.2.4",
158
158
  "indent-string": "5.0.0",
@@ -163,7 +163,7 @@
163
163
  "prompts": "2.4.2",
164
164
  "rechoir": "^0.8.0",
165
165
  "safe-regex": "2.1.1",
166
- "semver": "^7.4.0",
166
+ "semver": "^7.5.0",
167
167
  "semver-try-require": "6.2.2",
168
168
  "teamcity-service-messages": "0.1.14",
169
169
  "tsconfig-paths-webpack-plugin": "4.0.1",
@@ -174,18 +174,18 @@
174
174
  "@babel/core": "7.21.4",
175
175
  "@babel/plugin-transform-modules-commonjs": "7.21.2",
176
176
  "@babel/preset-typescript": "7.21.4",
177
- "@swc/core": "1.3.50",
177
+ "@swc/core": "1.3.53",
178
178
  "@types/lodash": "4.14.194",
179
- "@types/node": "18.15.11",
179
+ "@types/node": "18.15.13",
180
180
  "@types/prompts": "2.4.4",
181
- "@typescript-eslint/eslint-plugin": "5.58.0",
182
- "@typescript-eslint/parser": "5.58.0",
181
+ "@typescript-eslint/eslint-plugin": "5.59.0",
182
+ "@typescript-eslint/parser": "5.59.0",
183
183
  "@vue/compiler-sfc": "3.2.47",
184
184
  "c8": "7.13.0",
185
185
  "chai": "4.3.7",
186
186
  "chai-json-schema": "1.5.1",
187
187
  "coffeescript": "2.7.0",
188
- "eslint": "8.38.0",
188
+ "eslint": "8.39.0",
189
189
  "eslint-config-moving-meadow": "4.0.2",
190
190
  "eslint-config-prettier": "8.8.0",
191
191
  "eslint-plugin-budapestian": "5.0.1",
@@ -90,6 +90,10 @@ function gatherScannableFilesFromDirectory(pDirectoryName, pOptions) {
90
90
  export default function gatherInitialSources(pFileAndDirectoryArray, pOptions) {
91
91
  const lOptions = { baseDir: process.cwd(), ...pOptions };
92
92
 
93
+ // these are `.reduce`s and not `.map`s because they typically return larger
94
+ // arrays than the pFileAndDirectoryArray:
95
+ // - `glob` returns an array of strings
96
+ // - so does `gatherScannableFilesFromDirectory`
93
97
  return pFileAndDirectoryArray
94
98
  .reduce(
95
99
  (pAll, pFileOrDirectory) =>
package/src/meta.js CHANGED
@@ -1,7 +1,7 @@
1
1
  /* generated - don't edit */
2
2
 
3
3
  module.exports = {
4
- version: "13.0.0-beta-2",
4
+ version: "13.0.0-beta-3",
5
5
  engines: {
6
6
  node: "^16.14||>=18",
7
7
  },