@vibgrate/cli 2026.4.30 → 2026.6.5153336
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/dist/baseline-MJNJICDN.js +12 -0
- package/dist/chunk-734OP6JR.js +100 -0
- package/dist/chunk-74ZJFYEM.js +1936 -0
- package/dist/{chunk-JQHUH6A3.js → chunk-HAT4W7NZ.js} +2 -8
- package/dist/chunk-JSBRDJBE.js +30 -0
- package/dist/{chunk-XCIPC2J7.js → chunk-K2D6JXLA.js} +8688 -7297
- package/dist/cli.d.ts +1 -0
- package/dist/cli.js +1676 -301
- package/dist/{fs-D24ONFXR.js → fs-D24ONFXR-SJOEVGDJ.js} +2 -1
- package/dist/index.d.ts +1 -617
- package/dist/index.js +4 -2
- package/dist/semver-JBJZTHUX.js +5 -0
- package/package.json +8 -9
- package/dist/baseline-QZZXBT74.js +0 -10
- package/dist/chunk-2VJCLUTR.js +0 -31
|
@@ -1,11 +1,10 @@
|
|
|
1
|
-
//
|
|
1
|
+
// ../vibgrate-core/dist/chunk-JQHUH6A3.js
|
|
2
2
|
import { execFile } from "child_process";
|
|
3
3
|
import * as fs from "fs/promises";
|
|
4
4
|
import * as os from "os";
|
|
5
5
|
import * as path2 from "path";
|
|
6
6
|
import { promisify } from "util";
|
|
7
|
-
|
|
8
|
-
// src/utils/semaphore.ts
|
|
7
|
+
import * as path from "path";
|
|
9
8
|
var Semaphore = class {
|
|
10
9
|
available;
|
|
11
10
|
queue = [];
|
|
@@ -33,9 +32,6 @@ var Semaphore = class {
|
|
|
33
32
|
else this.available++;
|
|
34
33
|
}
|
|
35
34
|
};
|
|
36
|
-
|
|
37
|
-
// src/utils/glob.ts
|
|
38
|
-
import * as path from "path";
|
|
39
35
|
function compileGlobs(patterns) {
|
|
40
36
|
if (patterns.length === 0) return null;
|
|
41
37
|
const matchers = patterns.map((p) => compileOne(normalise(p)));
|
|
@@ -113,8 +109,6 @@ function globToRegex(pattern) {
|
|
|
113
109
|
function escapeRegex(s) {
|
|
114
110
|
return s.replace(/[.*+?^${}()|[\]\\]/g, "\\$&");
|
|
115
111
|
}
|
|
116
|
-
|
|
117
|
-
// src/utils/fs.ts
|
|
118
112
|
var execFileAsync = promisify(execFile);
|
|
119
113
|
var SKIP_DIRS = /* @__PURE__ */ new Set([
|
|
120
114
|
"node_modules",
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
var __create = Object.create;
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
6
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
|
+
var __commonJS = (cb, mod) => function __require() {
|
|
8
|
+
return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
|
|
9
|
+
};
|
|
10
|
+
var __copyProps = (to, from, except, desc) => {
|
|
11
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
12
|
+
for (let key of __getOwnPropNames(from))
|
|
13
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
14
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
15
|
+
}
|
|
16
|
+
return to;
|
|
17
|
+
};
|
|
18
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
19
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
20
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
21
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
22
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
23
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
24
|
+
mod
|
|
25
|
+
));
|
|
26
|
+
|
|
27
|
+
export {
|
|
28
|
+
__commonJS,
|
|
29
|
+
__toESM
|
|
30
|
+
};
|