@vibgrate/cli 1.0.31 → 1.0.33
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.
|
@@ -117,6 +117,7 @@ var SKIP_DIRS = /* @__PURE__ */ new Set([
|
|
|
117
117
|
"node_modules",
|
|
118
118
|
".git",
|
|
119
119
|
".vibgrate",
|
|
120
|
+
".wrangler",
|
|
120
121
|
".next",
|
|
121
122
|
"dist",
|
|
122
123
|
"build",
|
|
@@ -4322,6 +4323,7 @@ import * as path14 from "path";
|
|
|
4322
4323
|
var SKIP_DIRS2 = /* @__PURE__ */ new Set([
|
|
4323
4324
|
"node_modules",
|
|
4324
4325
|
".git",
|
|
4326
|
+
".wrangler",
|
|
4325
4327
|
".next",
|
|
4326
4328
|
"dist",
|
|
4327
4329
|
"build",
|
|
@@ -5317,7 +5319,7 @@ var PACKAGE_LAYER_MAP = {
|
|
|
5317
5319
|
"dd-trace": "infrastructure"
|
|
5318
5320
|
};
|
|
5319
5321
|
var SOURCE_EXTENSIONS = /* @__PURE__ */ new Set([".ts", ".tsx", ".js", ".jsx", ".mts", ".mjs", ".cts", ".cjs", ".svelte", ".vue"]);
|
|
5320
|
-
var IGNORE_DIRS = /* @__PURE__ */ new Set(["node_modules", ".git", "dist", "build", ".next", ".nuxt", ".output", ".svelte-kit", "coverage", ".vibgrate"]);
|
|
5322
|
+
var IGNORE_DIRS = /* @__PURE__ */ new Set(["node_modules", ".git", ".wrangler", "dist", "build", ".next", ".nuxt", ".output", ".svelte-kit", "coverage", ".vibgrate"]);
|
|
5321
5323
|
async function walkSourceFiles(rootDir, cache) {
|
|
5322
5324
|
if (cache) {
|
|
5323
5325
|
const entries = await cache.walkDir(rootDir);
|
package/dist/cli.js
CHANGED
|
@@ -4,7 +4,7 @@ import {
|
|
|
4
4
|
} from "./chunk-GN3IWKSY.js";
|
|
5
5
|
import {
|
|
6
6
|
baselineCommand
|
|
7
|
-
} from "./chunk-
|
|
7
|
+
} from "./chunk-MZRZ6JF7.js";
|
|
8
8
|
import {
|
|
9
9
|
VERSION,
|
|
10
10
|
dsnCommand,
|
|
@@ -15,7 +15,7 @@ import {
|
|
|
15
15
|
readJsonFile,
|
|
16
16
|
scanCommand,
|
|
17
17
|
writeDefaultConfig
|
|
18
|
-
} from "./chunk-
|
|
18
|
+
} from "./chunk-CDRVO72K.js";
|
|
19
19
|
|
|
20
20
|
// src/cli.ts
|
|
21
21
|
import { Command as Command4 } from "commander";
|
|
@@ -38,7 +38,7 @@ var initCommand = new Command("init").description("Initialize vibgrate in a proj
|
|
|
38
38
|
console.log(chalk.green("\u2714") + ` Created ${chalk.bold("vibgrate.config.ts")}`);
|
|
39
39
|
}
|
|
40
40
|
if (opts.baseline) {
|
|
41
|
-
const { runBaseline } = await import("./baseline-
|
|
41
|
+
const { runBaseline } = await import("./baseline-JBGAO3KJ.js");
|
|
42
42
|
await runBaseline(rootDir);
|
|
43
43
|
}
|
|
44
44
|
console.log("");
|
package/dist/index.js
CHANGED