@vxrn/utils 1.1.538 → 1.1.539

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.
@@ -1,46 +1,52 @@
1
1
  "use strict";
2
+
2
3
  var __defProp = Object.defineProperty;
3
4
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
5
  var __getOwnPropNames = Object.getOwnPropertyNames;
5
6
  var __hasOwnProp = Object.prototype.hasOwnProperty;
6
7
  var __export = (target, all) => {
7
- for (var name in all)
8
- __defProp(target, name, { get: all[name], enumerable: !0 });
9
- }, __copyProps = (to, from, except, desc) => {
10
- if (from && typeof from == "object" || typeof from == "function")
11
- for (let key of __getOwnPropNames(from))
12
- !__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
13
- return to;
14
- };
15
- var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: !0 }), mod);
8
+ for (var name in all) __defProp(target, name, {
9
+ get: all[name],
10
+ enumerable: !0
11
+ });
12
+ },
13
+ __copyProps = (to, from, except, desc) => {
14
+ if (from && typeof from == "object" || typeof from == "function") for (let key of __getOwnPropNames(from)) !__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, {
15
+ get: () => from[key],
16
+ enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
17
+ });
18
+ return to;
19
+ };
20
+ var __toCommonJS = mod => __copyProps(__defProp({}, "__esModule", {
21
+ value: !0
22
+ }), mod);
16
23
  var detectPackageManager_exports = {};
17
24
  __export(detectPackageManager_exports, {
18
25
  detectPackageManager: () => detectPackageManager
19
26
  });
20
27
  module.exports = __toCommonJS(detectPackageManager_exports);
21
- var import_node_fs = require("node:fs"), import_node_path = require("node:path"), import_exec = require("./exec");
28
+ var import_fs = require("fs"),
29
+ import_path = require("path"),
30
+ import_exec = require("./exec.native.js");
22
31
  async function pathExists(p) {
23
32
  try {
24
- return await import_node_fs.promises.access(p), !0;
33
+ return await import_fs.promises.access(p), !0;
25
34
  } catch {
26
35
  return !1;
27
36
  }
28
37
  }
29
38
  async function hasGlobal(pm) {
30
39
  try {
31
- var command = process.platform === "win32" ? `where ${pm}` : `which ${pm}`, res = (0, import_exec.exec)(command);
40
+ var command = process.platform === "win32" ? `where ${pm}` : `which ${pm}`,
41
+ res = (0, import_exec.exec)(command);
32
42
  return !!res.length;
33
43
  } catch {
34
44
  return !1;
35
45
  }
36
46
  }
37
47
  async function getFromLockfile() {
38
- var cwd = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : ".", [yarn, npm, pnpm, bun] = await Promise.all([
39
- pathExists((0, import_node_path.resolve)(cwd, "yarn.lock")),
40
- pathExists((0, import_node_path.resolve)(cwd, "package-lock.json")),
41
- pathExists((0, import_node_path.resolve)(cwd, "pnpm-lock.yaml")),
42
- pathExists((0, import_node_path.resolve)(cwd, "bun.lockb"))
43
- ]);
48
+ var cwd = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : ".",
49
+ [yarn, npm, pnpm, bun] = await Promise.all([pathExists((0, import_path.resolve)(cwd, "yarn.lock")), pathExists((0, import_path.resolve)(cwd, "package-lock.json")), pathExists((0, import_path.resolve)(cwd, "pnpm-lock.yaml")), pathExists((0, import_path.resolve)(cwd, "bun.lockb"))]);
44
50
  return {
45
51
  bun,
46
52
  yarn,
@@ -50,10 +56,13 @@ async function getFromLockfile() {
50
56
  }
51
57
  async function getFromPackage() {
52
58
  var cwd = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : ".";
53
- if (await pathExists((0, import_node_path.resolve)(cwd, "package.json"))) {
54
- var json = JSON.parse(await import_node_fs.promises.readFile((0, import_node_path.resolve)(cwd, "package.json"), "utf-8"));
59
+ if (await pathExists((0, import_path.resolve)(cwd, "package.json"))) {
60
+ var json = JSON.parse(await import_fs.promises.readFile((0, import_path.resolve)(cwd, "package.json"), "utf-8"));
55
61
  if (json.packageManager) {
56
- var yarn = !!json.packageManager.starsWith("yarn"), pnpm = !!json.packageManager.starsWith("pnpm"), bun = !!json.packageManager.starsWith("bun"), npm = !!json.packageManager.starsWith("npm");
62
+ var yarn = !!json.packageManager.starsWith("yarn"),
63
+ pnpm = !!json.packageManager.starsWith("pnpm"),
64
+ bun = !!json.packageManager.starsWith("bun"),
65
+ npm = !!json.packageManager.starsWith("npm");
57
66
  return {
58
67
  bun,
59
68
  yarn,
@@ -63,32 +72,25 @@ async function getFromPackage() {
63
72
  }
64
73
  }
65
74
  }
66
- var foundSome = function(obj) {
67
- return Object.keys(obj).some(function(k) {
68
- return !!obj[k];
69
- });
70
- }, detectPackageManager = async function() {
71
- var { cwd } = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {}, fromLockfile = await getFromLockfile(cwd);
72
- if (foundSome(fromLockfile))
73
- return fromLockfile;
74
- var fromPackageJson = await getFromPackage(cwd);
75
- if (fromPackageJson && foundSome(fromPackageJson))
76
- return fromPackageJson;
77
- var [npm, yarn, pnpm, bun] = await Promise.all([
78
- hasGlobal("npm"),
79
- hasGlobal("yarn"),
80
- hasGlobal("pnpm"),
81
- hasGlobal("bun")
82
- ]);
83
- return {
84
- bun,
85
- yarn,
86
- pnpm,
87
- npm
75
+ var foundSome = function (obj) {
76
+ return Object.keys(obj).some(function (k) {
77
+ return !!obj[k];
78
+ });
79
+ },
80
+ detectPackageManager = async function () {
81
+ var {
82
+ cwd
83
+ } = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {},
84
+ fromLockfile = await getFromLockfile(cwd);
85
+ if (foundSome(fromLockfile)) return fromLockfile;
86
+ var fromPackageJson = await getFromPackage(cwd);
87
+ if (fromPackageJson && foundSome(fromPackageJson)) return fromPackageJson;
88
+ var [npm, yarn, pnpm, bun] = await Promise.all([hasGlobal("npm"), hasGlobal("yarn"), hasGlobal("pnpm"), hasGlobal("bun")]);
89
+ return {
90
+ bun,
91
+ yarn,
92
+ pnpm,
93
+ npm
94
+ };
88
95
  };
89
- };
90
- // Annotate the CommonJS export names for ESM import in node:
91
- 0 && (module.exports = {
92
- detectPackageManager
93
- });
94
- //# sourceMappingURL=detectPackageManager.js.map
96
+ //# sourceMappingURL=detectPackageManager.native.js.map
@@ -1,6 +1 @@
1
- {
2
- "version": 3,
3
- "sources": ["../../src/detectPackageManager.ts"],
4
- "mappings": ";;;;;;;;;;;;;;;AAAA;;;;;qBAA+B,oBAC/B,mBAAwB,sBACxB,cAAqB;AAIrB,eAAeA,WAAWC,GAAS;AACjC,MAAI;AACF,iBAAMC,eAAAA,SAAGC,OAAOF,CAAAA,GACT;EACT,QAAQ;AACN,WAAO;EACT;AACF;AAEA,eAAeG,UAAUC,IAAsB;AAC7C,MAAI;AACF,QAAMC,UAAUC,QAAQC,aAAa,UAAU,SAASH,EAAAA,KAAO,SAASA,EAAAA,IAClEI,UAAMC,kBAAKJ,OAAAA;AACjB,WAAO,CAAC,CAACG,IAAIE;EACf,QAAQ;AACN,WAAO;EACT;AACF;AAEA,eAAeC,kBAAAA;MAAgBC,MAAAA,UAAAA,SAAAA,KAAAA,UAAAA,CAAAA,MAAAA,SAAAA,UAAAA,CAAAA,IAAM,KAC7B,CAACC,MAAMC,KAAKC,MAAMC,GAAAA,IAAO,MAAMC,QAAQC,IAAI;IAC/CnB,eAAWoB,0BAAQP,KAAK,WAAA,CAAA;IACxBb,eAAWoB,0BAAQP,KAAK,mBAAA,CAAA;IACxBb,eAAWoB,0BAAQP,KAAK,gBAAA,CAAA;IACxBb,eAAWoB,0BAAQP,KAAK,WAAA,CAAA;GACzB;AAED,SAAO;IAAEI;IAAKH;IAAME;IAAMD;EAAI;AAChC;AAEA,eAAeM,iBAAAA;MAAeR,MAAAA,UAAAA,SAAAA,KAAAA,UAAAA,CAAAA,MAAAA,SAAAA,UAAAA,CAAAA,IAAM;AAClC,MAAI,MAAMb,eAAWoB,0BAAQP,KAAK,cAAA,CAAA,GAAkB;AAClD,QAAMS,OAAOC,KAAKC,MAAM,MAAMtB,eAAAA,SAAGuB,aAASL,0BAAQP,KAAK,cAAA,GAAiB,OAAA,CAAA;AACxE,QAAIS,KAAKI,gBAAgB;AACvB,UAAMZ,OAAO,CAAC,CAACQ,KAAKI,eAAeC,UAAU,MAAA,GACvCX,OAAO,CAAC,CAACM,KAAKI,eAAeC,UAAU,MAAA,GACvCV,MAAM,CAAC,CAACK,KAAKI,eAAeC,UAAU,KAAA,GACtCZ,MAAM,CAAC,CAACO,KAAKI,eAAeC,UAAU,KAAA;AAC5C,aAAO;QAAEV;QAAKH;QAAME;QAAMD;MAAI;IAChC;EACF;AACF;AAGA,IAAMa,YAAY,SAACC,KAAAA;SAAgBC,OAAOC,KAAKF,GAAAA,EAAKG,KAAK,SAACC,GAAAA;WAAM,CAAC,CAACJ,IAAII,CAAAA;;GAEzDC,uBAAuB,iBAAA;MAAO,EAAErB,IAAG,IAAoB,UAAA,SAAA,KAAA,UAAA,CAAA,MAAA,SAAA,UAAA,CAAA,IAAG,CAAC,GAChEsB,eAAe,MAAMvB,gBAAgBC,GAAAA;AAC3C,MAAIe,UAAUO,YAAAA;AACZ,WAAOA;AAGT,MAAMC,kBAAkB,MAAMf,eAAeR,GAAAA;AAC7C,MAAIuB,mBAAmBR,UAAUQ,eAAAA;AAC/B,WAAOA;AAGT,MAAM,CAACrB,KAAKD,MAAME,MAAMC,GAAAA,IAAO,MAAMC,QAAQC,IAAI;IAC/Cf,UAAU,KAAA;IACVA,UAAU,MAAA;IACVA,UAAU,MAAA;IACVA,UAAU,KAAA;GACX;AAED,SAAO;IACLa;IACAH;IACAE;IACAD;EACF;AACF;",
5
- "names": ["pathExists", "p", "fs", "access", "hasGlobal", "pm", "command", "process", "platform", "res", "exec", "length", "getFromLockfile", "cwd", "yarn", "npm", "pnpm", "bun", "Promise", "all", "resolve", "getFromPackage", "json", "JSON", "parse", "readFile", "packageManager", "starsWith", "foundSome", "obj", "Object", "keys", "some", "k", "detectPackageManager", "fromLockfile", "fromPackageJson"]
6
- }
1
+ {"version":3,"names":["__toCommonJS","mod","__copyProps","__defProp","value","detectPackageManager_exports","__export","detectPackageManager","module","exports","import_fs","require","import_path","import_exec","pathExists","p","promises","access","hasGlobal","pm","command","process","platform","res","exec","length","getFromLockfile","cwd","arguments","yarn","npm","pnpm","bun","Promise","all","resolve","getFromPackage","json","JSON","parse","readFile","packageManager","starsWith","foundSome","obj","Object","keys","some","k","fromLockfile"],"sources":["../../src/detectPackageManager.ts"],"sourcesContent":[null],"mappings":";;;;;;;;;;;;;;;;;;;AAAA,IAAAA,YAAA,GAAAC,GAAA,IAAAC,WAAA,CAAAC,SAAA;EAAAC,KAAA;AAAA,IAAAH,GAAA;AAAA,IAAAI,4BAAA;AAAAC,QAAA,CAAAD,4BAAA;EAAAE,oBAAA,EAAAA,CAAA,KAAAA;AAAA;AAAAC,MAAA,CAAAC,OAAA,GAAAT,YAA+B,CAAAK,4BAC/B;AAKA,IAAAK,SAAA,GAAeC,OAAA,KAAW,CAAW;EAAAC,WAAA,GAAAD,OAAA;EAAAE,WAAA,GAAAF,OAAA;AACnC,eAAIG,WAAAC,CAAA;EACF;IAEF,OAAQ,MAAAL,SAAA,CAAAM,QAAA,CAAAC,MAAA,CAAAF,CAAA;EACN;IACF;EACF;AAEA;AACE,eAAIG,UAAAC,EAAA;EACF;IAEA,IAAAC,OAAQ,GADIC,OAAA,CAAAC,QAAA,KAAK,OACJ,YAAAH,EAAA,cAAAA,EAAA;MAAAI,GAAA,OAAAV,WAAA,CAAAW,IAAA,EAAAJ,OAAA;IACf,OAAQ,EAAAG,GAAA,CAAAE,MAAA;EACN;IACF;EACF;AAEA;AACE,eAAaC,eAAcA,CAAA,EAAI;EAAkB,IAC/CC,GAAA,GAAAC,SAAW,CAAAH,MAAA,QAAAG,SAAQ,QAAK,SAAYA,SAAA;IAAA,CAAAC,IAAA,EAAAC,GAAA,EAAAC,IAAA,EAAAC,GAAA,UAAAC,OAAA,CAAAC,GAAA,EACpCpB,UAAA,KAAWF,WAAA,CAAAuB,OAAA,EAAAR,GAAA,EAAQ,WAAK,IACxBb,UAAA,KAAWF,WAAA,CAAAuB,OAAA,EAAAR,GAAA,EAAQ,mBAAK,EAAgB,EACxCb,UAAA,KAAWF,WAAA,CAAAuB,OAAA,EAAAR,GAAA,EAAQ,gBAAgB,CAAC,GACrCb,UAAA,KAAAF,WAAA,CAAAuB,OAAA,EAAAR,GAAA,gBAED;EACF;IAEAK,GAAA;IACEH,IAAI;IACFE,IAAA;IACAD;EACE;AAIA;AAA8B,eAChCM,eAAA;EACF,IAAAT,GAAA,GAAAC,SAAA,CAAAH,MAAA,QAAAG,SAAA,iBAAAA,SAAA;EACF,UAAAd,UAAA,KAAAF,WAAA,CAAAuB,OAAA,EAAAR,GAAA;IAGA,IAAMU,IAAA,GAAAC,IAAa,CAAAC,KAAA,OAAgB7B,SAAY,CAAGM,QAAQ,CAAAwB,QAAQ,GAAI,EAAE5B,WAE3D,CAAAuB,OAAA,EAAAR,GAAA,EAAuB,cAAa,GAAsB,OAAO;IAC5E,IAAMU,IAAA,CAAAI,cAAe,EAAM;MACvB,IAAAZ,IAAA,GAAU,EAAAQ,IAAA,CAAAI,cAAY,CAAAC,SAAA;QAAAX,IAAA,KAAAM,IAAA,CAAAI,cAAA,CAAAC,SAAA;QAAAV,GAAA,KAAAK,IAAA,CAAAI,cAAA,CAAAC,SAAA;QAAAZ,GAAA,KAAAO,IAAA,CAAAI,cAAA,CAAAC,SAAA;MACxB,OAAO;QAGHV,GAAA;QACFH,IAAA;QACFE,IAAO;QAGHD;MACJ;IACA;EAAgB;AACA;AACD,IAChBa,SAAA,YAAAA,CAAAC,GAAA;IAED,OAAOC,MAAA,CAAAC,IAAA,CAAAF,GAAA,EAAAG,IAAA,WAAAC,CAAA;MACL,SAAAJ,GAAA,CAAAI,CAAA;IAAA,EACA;EAAA;EAAAzC,oBACA,kBAAAA,CAAA;IAAA,IACA;QAAAoB;MAAA,IAAAC,SAAA,CAAAH,MAAA,QAAAG,SAAA,iBAAAA,SAAA;MAAAqB,YAAA,SAAAvB,eAAA,CAAAC,GAAA;IACF,IAAAgB,SAAA,CAAAM,YAAA,GACF,OAAAA,YAAA","ignoreList":[]}
@@ -1,18 +1,25 @@
1
1
  "use strict";
2
+
2
3
  var __defProp = Object.defineProperty;
3
4
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
5
  var __getOwnPropNames = Object.getOwnPropertyNames;
5
6
  var __hasOwnProp = Object.prototype.hasOwnProperty;
6
7
  var __export = (target, all) => {
7
- for (var name in all)
8
- __defProp(target, name, { get: all[name], enumerable: !0 });
9
- }, __copyProps = (to, from, except, desc) => {
10
- if (from && typeof from == "object" || typeof from == "function")
11
- for (let key of __getOwnPropNames(from))
12
- !__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
13
- return to;
14
- };
15
- var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: !0 }), mod);
8
+ for (var name in all) __defProp(target, name, {
9
+ get: all[name],
10
+ enumerable: !0
11
+ });
12
+ },
13
+ __copyProps = (to, from, except, desc) => {
14
+ if (from && typeof from == "object" || typeof from == "function") for (let key of __getOwnPropNames(from)) !__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, {
15
+ get: () => from[key],
16
+ enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
17
+ });
18
+ return to;
19
+ };
20
+ var __toCommonJS = mod => __copyProps(__defProp({}, "__esModule", {
21
+ value: !0
22
+ }), mod);
16
23
  var exec_exports = {};
17
24
  __export(exec_exports, {
18
25
  exec: () => exec,
@@ -20,36 +27,34 @@ __export(exec_exports, {
20
27
  execPromiseQuiet: () => execPromiseQuiet
21
28
  });
22
29
  module.exports = __toCommonJS(exec_exports);
23
- var import_node_child_process = require("node:child_process"), exec = function(cmd, options) {
24
- var _execSync;
25
- return ((_execSync = (0, import_node_child_process.execSync)(cmd, options)) === null || _execSync === void 0 ? void 0 : _execSync.toString()) || "";
26
- }, execPromise = function(cmd, options) {
27
- return new Promise(function(resolve, reject) {
28
- var [command, ...args] = cmd.split(" "), child = (0, import_node_child_process.spawn)(command, args, {
29
- stdio: options != null && options.quiet ? "pipe" : "inherit",
30
- shell: !0,
31
- ...options
30
+ var import_child_process = require("child_process"),
31
+ exec = function (cmd, options) {
32
+ var _execSync;
33
+ return ((_execSync = (0, import_child_process.execSync)(cmd, options)) === null || _execSync === void 0 ? void 0 : _execSync.toString()) || "";
34
+ },
35
+ execPromise = function (cmd, options) {
36
+ return new Promise(function (resolve, reject) {
37
+ var [command, ...args] = cmd.split(" "),
38
+ child = (0, import_child_process.spawn)(command, args, {
39
+ stdio: options?.quiet ? "pipe" : "inherit",
40
+ shell: !0,
41
+ ...options
42
+ });
43
+ if (!options?.quiet || process.env.DEBUG) {
44
+ var _child_stdout, _child_stderr;
45
+ (_child_stdout = child.stdout) === null || _child_stdout === void 0 || _child_stdout.pipe(process.stdout), (_child_stderr = child.stderr) === null || _child_stderr === void 0 || _child_stderr.pipe(process.stderr);
46
+ }
47
+ child.on("close", function (code) {
48
+ code !== 0 ? reject(new Error(`Command failed with exit code ${code}: ${cmd}`)) : resolve();
49
+ }), child.on("error", function (error) {
50
+ reject(error);
51
+ });
32
52
  });
33
- if (!(options != null && options.quiet) || process.env.DEBUG) {
34
- var _child_stdout, _child_stderr;
35
- (_child_stdout = child.stdout) === null || _child_stdout === void 0 || _child_stdout.pipe(process.stdout), (_child_stderr = child.stderr) === null || _child_stderr === void 0 || _child_stderr.pipe(process.stderr);
36
- }
37
- child.on("close", function(code) {
38
- code !== 0 ? reject(new Error(`Command failed with exit code ${code}: ${cmd}`)) : resolve();
39
- }), child.on("error", function(error) {
40
- reject(error);
53
+ },
54
+ execPromiseQuiet = function (cmd, options) {
55
+ return execPromise(cmd, {
56
+ ...options,
57
+ quiet: !0
41
58
  });
42
- });
43
- }, execPromiseQuiet = function(cmd, options) {
44
- return execPromise(cmd, {
45
- ...options,
46
- quiet: !0
47
- });
48
- };
49
- // Annotate the CommonJS export names for ESM import in node:
50
- 0 && (module.exports = {
51
- exec,
52
- execPromise,
53
- execPromiseQuiet
54
- });
55
- //# sourceMappingURL=exec.js.map
59
+ };
60
+ //# sourceMappingURL=exec.native.js.map
@@ -1,6 +1 @@
1
- {
2
- "version": 3,
3
- "sources": ["../../src/exec.ts"],
4
- "mappings": ";;;;;;;;;;;;;;;AAAA;;;;;;;gCAAmD,+BAGtCA,OAAO,SAACC,KAAaC,SAAAA;MACzBC;AAAP,WAAOA,gBAAAA,oCAASF,KAAKC,OAAAA,OAAAA,QAAdC,cAAAA,SAAAA,SAAAA,UAAwBC,SAAQ,MAAM;AAC/C,GAEaC,cAAc,SACzBJ,KACAC,SAAAA;AAIA,SAAO,IAAII,QAAc,SAACC,SAASC,QAAAA;AACjC,QAAM,CAACC,SAAS,GAAGC,IAAAA,IAAQT,IAAIU,MAAM,GAAA,GAE/BC,YAAQC,iCAAMJ,SAASC,MAAM;MACjCI,OAAOZ,WAAAA,QAAAA,QAASa,QAAQ,SAAS;MACjCC,OAAO;MACP,GAAGd;IACL,CAAA;AAEA,QAAI,EAACA,WAAAA,QAAAA,QAASa,UAASE,QAAQC,IAAIC,OAAO;UACxCP,eACAA;OADAA,gBAAAA,MAAMQ,YAAM,QAAZR,kBAAAA,UAAAA,cAAcS,KAAKJ,QAAQG,MAAM,IACjCR,gBAAAA,MAAMU,YAAM,QAAZV,kBAAAA,UAAAA,cAAcS,KAAKJ,QAAQK,MAAM;IACnC;AAEAV,UAAMW,GAAG,SAAS,SAACC,MAAAA;AACjB,MAAIA,SAAS,IACXhB,OAAO,IAAIiB,MAAM,iCAAiCD,IAAAA,KAASvB,GAAAA,EAAK,CAAA,IAEhEM,QAAAA;IAEJ,CAAA,GAEAK,MAAMW,GAAG,SAAS,SAACG,OAAAA;AACjBlB,aAAOkB,KAAAA;IACT,CAAA;EACF,CAAA;AACF,GAEaC,mBAAmB,SAC9B1B,KACAC,SAAAA;AAIA,SAAOG,YAAYJ,KAAK;IACtB,GAAGC;IACHa,OAAO;EACT,CAAA;AACF;",
5
- "names": ["exec", "cmd", "options", "execSync", "toString", "execPromise", "Promise", "resolve", "reject", "command", "args", "split", "child", "spawn", "stdio", "quiet", "shell", "process", "env", "DEBUG", "stdout", "pipe", "stderr", "on", "code", "Error", "error", "execPromiseQuiet"]
6
- }
1
+ {"version":3,"names":["__toCommonJS","mod","__copyProps","__defProp","value","exec_exports","__export","exec","execPromise","execPromiseQuiet","module","exports","import_child_process","require","cmd","options","_execSync","execSync","toString","Promise","resolve","reject","command","args","split","child","spawn","stdio","quiet","shell","process","env","DEBUG","_child_stdout","_child_stderr","stdout","pipe","stderr","on","code"],"sources":["../../src/exec.ts"],"sourcesContent":[null],"mappings":";;;;;;;;;;;;;;;;;;;AAAA,IAAAA,YAAA,GAAAC,GAAA,IAAAC,WAAA,CAAAC,SAAA;EAAAC,KAAA;AAAA,IAAAH,GAAA;AAAA,IAAAI,YAAA;AAAAC,QAAA,CAAAD,YAAA;EAAAE,IAAA,EAAAA,CAAA,KAAAA,IAAA;EAAAC,WAAA,EAAAA,CAAA,KAAAA,WAAA;EAAAC,gBAAA,EAAAA,CAAA,KAAAA;AAAA;AAAAC,MAAA,CAAAC,OAAA,GAAAX,YAAA,CAAAK,YAAmD;AAG5C,IAAAO,oBAA2B,GAAAC,OAAA,CACzB;EAAAN,IAAA,YAAAA,CAAAO,GAAS,EAAAC,OAAK,EAAO;IAU1B,IAAAC,SAAO;IAE4B,OACjC,EAAOA,SAAS,OAAAJ,oBAAiB,CAAAK,QAAA,EAAAH,GAAA,EAAAC,OAAA,eAAAC,SAAA,uBAAAA,SAAA,CAAAE,QAAA;EAAA;EAAAV,WAC1B,YAAAA,CAAAM,GAAA,EAAAC,OAAA;IAAA,OACJ,IAAAI,OAAA,WAAAC,OAAA,EAAAC,MAAA;MACJ,KAAAC,OAAA,KAAAC,IAAA,IAAAT,GAAA,CAAAU,KAAA;QAAAC,KAAA,OAAAb,oBAAA,CAAAc,KAAA,EAAAJ,OAAA,EAAAC,IAAA;UAEII,KAAA,EAASZ,OAAA,EAASa,KAAA,GAAQ,MAAI,YACjC;UAKIC,KAAA,EAAS;UAOf,GAAAd;QACE;MACD,KAAAA,OAAA,EAAAa,KAAA,IAAAE,OAAA,CAAAC,GAAA,CAAAC,KAAA;QAIQ,IAAAC,aAAmB,EAC9BC,aACA;QAKK,CAAAD,aAAA,GAAAR,KAAA,CAAAU,MAAA,cAAAF,aAAA,eAAAA,aAAA,CAAAG,IAAA,CAAAN,OAAA,CAAAK,MAAA,IAAAD,aAAA,GAAAT,KAAA,CAAAY,MAAA,cAAAH,aAAA,eAAAA,aAAA,CAAAE,IAAA,CAAAN,OAAA,CAAAO,MAAA;MACH;MACDZ,KAAA,CAAAa,EAAA,oBAAAC,IAAA","ignoreList":[]}
@@ -1,28 +1,25 @@
1
1
  "use strict";
2
+
2
3
  var __defProp = Object.defineProperty;
3
4
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
5
  var __getOwnPropNames = Object.getOwnPropertyNames;
5
6
  var __hasOwnProp = Object.prototype.hasOwnProperty;
6
7
  var __copyProps = (to, from, except, desc) => {
7
- if (from && typeof from == "object" || typeof from == "function")
8
- for (let key of __getOwnPropNames(from))
9
- !__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
10
- return to;
11
- }, __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
12
- var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: !0 }), mod);
8
+ if (from && typeof from == "object" || typeof from == "function") for (let key of __getOwnPropNames(from)) !__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, {
9
+ get: () => from[key],
10
+ enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
11
+ });
12
+ return to;
13
+ },
14
+ __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
15
+ var __toCommonJS = mod => __copyProps(__defProp({}, "__esModule", {
16
+ value: !0
17
+ }), mod);
13
18
  var index_exports = {};
14
19
  module.exports = __toCommonJS(index_exports);
15
20
  __reExport(index_exports, require("@vxrn/debug"), module.exports);
16
21
  __reExport(index_exports, require("@vxrn/resolve"), module.exports);
17
- __reExport(index_exports, require("./mustReplace"), module.exports);
18
- __reExport(index_exports, require("./detectPackageManager"), module.exports);
19
- __reExport(index_exports, require("./exec"), module.exports);
20
- // Annotate the CommonJS export names for ESM import in node:
21
- 0 && (module.exports = {
22
- ...require("@vxrn/debug"),
23
- ...require("@vxrn/resolve"),
24
- ...require("./mustReplace"),
25
- ...require("./detectPackageManager"),
26
- ...require("./exec")
27
- });
28
- //# sourceMappingURL=index.js.map
22
+ __reExport(index_exports, require("./mustReplace.native.js"), module.exports);
23
+ __reExport(index_exports, require("./detectPackageManager.native.js"), module.exports);
24
+ __reExport(index_exports, require("./exec.native.js"), module.exports);
25
+ //# sourceMappingURL=index.native.js.map
@@ -1,6 +1 @@
1
- {
2
- "version": 3,
3
- "sources": ["../../src/index.ts"],
4
- "mappings": ";;;;;;;;;;;;AAAA;;0BAAc,wBAAd;AACA,0BAAc,0BADd;AAGA,0BAAc,0BAHd;AAIA,0BAAc,mCAJd;AAKA,0BAAc,mBALd;",
5
- "names": []
6
- }
1
+ {"version":3,"names":["__toCommonJS","mod","__copyProps","__defProp","value","index_exports","module","exports","__reExport","require"],"sources":["../../src/index.ts"],"sourcesContent":[null],"mappings":";;;;;;;;;;;;;;AAAA,IAAAA,YAAA,GAAAC,GAAA,IAAAC,WAAA,CAAAC,SAAA;EAAAC,KAAA;AAAA,IAAAH,GAAA;AAAA,IAAAI,aAAA;AAAAC,MAAA,CAAAC,OAAA,GAAAP,YAAc,CAAAK,aAAA;AACdG,UAAA,CAAAH,aAAA,EAAcI,OAAA,iBAAAH,MADd,CAAAC,OAAA;AAGAC,UAAA,CAAAH,aAAA,EAAcI,OAAA,mBAHdH,MAAA,CAAAC,OAAA;AAIAC,UAAA,CAAAH,aAAA,EAAcI,OAAA,6BAAAH,MAAA,CAAAC,OAJd;AAKAC,UAAA,CAAAH,aAAA,EAAcI,OAAA,mCALd,GAAAH,MAAA,CAAAC,OAAA","ignoreList":[]}
@@ -1,34 +1,53 @@
1
1
  "use strict";
2
+
2
3
  var __defProp = Object.defineProperty;
3
4
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
5
  var __getOwnPropNames = Object.getOwnPropertyNames;
5
6
  var __hasOwnProp = Object.prototype.hasOwnProperty;
6
7
  var __export = (target, all) => {
7
- for (var name in all)
8
- __defProp(target, name, { get: all[name], enumerable: !0 });
9
- }, __copyProps = (to, from, except, desc) => {
10
- if (from && typeof from == "object" || typeof from == "function")
11
- for (let key of __getOwnPropNames(from))
12
- !__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
13
- return to;
14
- };
15
- var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: !0 }), mod);
8
+ for (var name in all) __defProp(target, name, {
9
+ get: all[name],
10
+ enumerable: !0
11
+ });
12
+ },
13
+ __copyProps = (to, from, except, desc) => {
14
+ if (from && typeof from == "object" || typeof from == "function") for (let key of __getOwnPropNames(from)) !__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, {
15
+ get: () => from[key],
16
+ enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
17
+ });
18
+ return to;
19
+ };
20
+ var __toCommonJS = mod => __copyProps(__defProp({}, "__esModule", {
21
+ value: !0
22
+ }), mod);
16
23
  var mustReplace_exports = {};
17
24
  __export(mustReplace_exports, {
18
25
  mustReplace: () => mustReplace
19
26
  });
20
27
  module.exports = __toCommonJS(mustReplace_exports);
21
- var import_node_fs = require("node:fs"), import_node_os = require("node:os"), import_node_path = require("node:path");
28
+ var import_fs = require("fs"),
29
+ import_os = require("os"),
30
+ import_path = require("path");
31
+ function _instanceof(left, right) {
32
+ return right != null && typeof Symbol < "u" && right[Symbol.hasInstance] ? !!right[Symbol.hasInstance](left) : left instanceof right;
33
+ }
22
34
  function mustReplace(source, replacements) {
23
- var sourceOut = source, _iteratorNormalCompletion = !0, _didIteratorError = !1, _iteratorError = void 0;
35
+ var sourceOut = source,
36
+ _iteratorNormalCompletion = !0,
37
+ _didIteratorError = !1,
38
+ _iteratorError = void 0;
24
39
  try {
25
40
  for (var _iterator = replacements[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = !0) {
26
- var { find, replace, optional } = _step.value;
41
+ var {
42
+ find,
43
+ replace,
44
+ optional
45
+ } = _step.value;
27
46
  if (!optional) {
28
- var found = find instanceof RegExp ? find.test(sourceOut) : sourceOut.includes(find);
47
+ var found = _instanceof(find, RegExp) ? find.test(sourceOut) : sourceOut.includes(find);
29
48
  if (!found) {
30
- var tmpPath = (0, import_node_path.join)((0, import_node_os.tmpdir)(), `replace-error-${Math.random()}`);
31
- throw (0, import_node_fs.writeFileSync)(tmpPath, sourceOut, "utf-8"), new Error(`Substring or pattern "${find}" not found in the string, replacing in source: ${tmpPath}.`);
49
+ var tmpPath = (0, import_path.join)((0, import_os.tmpdir)(), `replace-error-${Math.random()}`);
50
+ throw (0, import_fs.writeFileSync)(tmpPath, sourceOut, "utf-8"), new Error(`Substring or pattern "${find}" not found in the string, replacing in source: ${tmpPath}.`);
32
51
  }
33
52
  }
34
53
  sourceOut = sourceOut.replace(find, replace);
@@ -39,14 +58,9 @@ function mustReplace(source, replacements) {
39
58
  try {
40
59
  !_iteratorNormalCompletion && _iterator.return != null && _iterator.return();
41
60
  } finally {
42
- if (_didIteratorError)
43
- throw _iteratorError;
61
+ if (_didIteratorError) throw _iteratorError;
44
62
  }
45
63
  }
46
64
  return sourceOut;
47
65
  }
48
- // Annotate the CommonJS export names for ESM import in node:
49
- 0 && (module.exports = {
50
- mustReplace
51
- });
52
- //# sourceMappingURL=mustReplace.js.map
66
+ //# sourceMappingURL=mustReplace.native.js.map
@@ -1,6 +1 @@
1
- {
2
- "version": 3,
3
- "sources": ["../../src/mustReplace.ts"],
4
- "mappings": ";;;;;;;;;;;;;;;AAAA;;;;;qBAA8B,oBAC9B,iBAAuB,oBACvB,mBAAqB;AAEd,SAASA,YACdC,QACAC,cAIG;AAEH,MAAIC,YAAYF,QACX,4BAAA,IAAA,oBAAA,IAAA,iBAAA;;AAAL,aAAK,YAAqCC,aAAAA,OAAAA,QAAAA,EAAAA,GAArC,OAAA,EAAA,6BAAA,QAAA,UAAA,KAAA,GAAA,OAAA,4BAAA,IAAmD;AAAnD,UAAM,EAAEE,MAAMC,SAASC,SAAQ,IAA/B,MAAA;AACH,UAAI,CAACA,UAAU;AACb,YAAMC,QAAQH,gBAAgBI,SAASJ,KAAKK,KAAKN,SAAAA,IAAaA,UAAUO,SAASN,IAAAA;AACjF,YAAI,CAACG,OAAO;AACV,cAAMI,cAAUC,2BAAKC,uBAAAA,GAAU,iBAAiBC,KAAKC,OAAM,CAAA,EAAI;AAC/DC,kDAAcL,SAASR,WAAW,OAAA,GAC5B,IAAIc,MACR,yBAAyBb,IAAAA,mDAAuDO,OAAAA,GAAU;QAE9F;MACF;AAGAR,kBAAYA,UAAUE,QAAQD,MAAMC,OAAAA;IACtC;;AAdK,wBAAA,IAAA,iBAAA;;;OAAA,6BAAA,UAAA,UAAA,QAAA,UAAA,OAAA;;UAAA;cAAA;;;AAeL,SAAOF;AACT;",
5
- "names": ["mustReplace", "source", "replacements", "sourceOut", "find", "replace", "optional", "found", "RegExp", "test", "includes", "tmpPath", "join", "tmpdir", "Math", "random", "writeFileSync", "Error"]
6
- }
1
+ {"version":3,"names":["__toCommonJS","mod","__copyProps","__defProp","value","mustReplace_exports","__export","mustReplace","module","exports","import_fs","require","import_os","import_path","_instanceof","left","right","Symbol","hasInstance","source","replacements","sourceOut","_iteratorNormalCompletion","_didIteratorError","_iteratorError","_iterator","iterator","_step","next","done","find","replace","optional","found","RegExp","test","includes","tmpPath","join","tmpdir","Math","random"],"sources":["../../src/mustReplace.ts"],"sourcesContent":[null],"mappings":";;;;;;;;;;;;;;;;;;;AAAA,IAAAA,YAAA,GAAAC,GAAA,IAAAC,WAAA,CAAAC,SAAA;EAAAC,KAAA;AAAA,IAAAH,GAAA;AAAA,IAAAI,mBAAA;AAAAC,QAAA,CAAAD,mBAAA;EAAAE,WAAA,EAAAA,CAAA,KAAAA;AAAA;AAAAC,MAAA,CAAAC,OAAA,GAAAT,YAA8B,CAAAK,mBAC9B;AAGO,IAAAK,SAAS,GAAAC,OACd,MACA;EAAAC,SAAA,GAKAD,OAAA;EAAAE,WAAA,GAAAF,OAAA;AACA,SAAIG,WAAYA,CAAAC,IAAA,EAAAC,KAAA;EAChB,OAAAA,KAAW,IAAE,IAAM,WAASC,MAAS,MAAK,IAAAD,KAAA,CAAAC,MAAc,CAAAC,WAAA,MAAAF,KAAA,CAAAC,MAAA,CAAAC,WAAA,EAAAH,IAAA,IAAAA,IAAA,YAAAC,KAAA;AACtD;AAGI,SAAAT,WAAMA,CAAAY,MAAU,EAAAC,YAAA;EAChB,IAAAC,SAAA,GAAAF,MAAA;IAAAG,yBAAc,IAAS;IAAAC,iBAAkB,GACnC,EAAI;IAAAC,cAAA;EAAA;IAC+E,KACzF,IAAAC,SAAA,GAAAL,YAAA,CAAAH,MAAA,CAAAS,QAAA,KAAAC,KAAA,IAAAL,yBAAA,IAAAK,KAAA,GAAAF,SAAA,CAAAG,IAAA,IAAAC,IAAA,GAAAP,yBAAA;MACF;QAAAQ,IAAA;QAAAC,OAAA;QAAAC;MAAA,IAAAL,KAAA,CAAAvB,KAAA;MAIF,KAAA4B,QAAY;QACd,IAAAC,KAAA,GAAAnB,WAAA,CAAAgB,IAAA,EAAAI,MAAA,IAAAJ,IAAA,CAAAK,IAAA,CAAAd,SAAA,IAAAA,SAAA,CAAAe,QAAA,CAAAN,IAAA;QACA,IAAO,CAAAG,KAAA;UACT,IAAAI,OAAA,OAAAxB,WAAA,CAAAyB,IAAA,MAAA1B,SAAA,CAAA2B,MAAA,sBAAAC,IAAA,CAAAC,MAAA","ignoreList":[]}
@@ -1,5 +1,5 @@
1
- import { promises as fs } from "node:fs";
2
- import { resolve } from "node:path";
1
+ import { promises as fs } from "fs";
2
+ import { resolve } from "path";
3
3
  import { exec } from "./exec.native.js";
4
4
  async function pathExists(p) {
5
5
  try {
@@ -1,4 +1,4 @@
1
- import { execSync, spawn } from "node:child_process";
1
+ import { execSync, spawn } from "child_process";
2
2
  var exec = function (cmd, options) {
3
3
  var _execSync;
4
4
  return ((_execSync = execSync(cmd, options)) === null || _execSync === void 0 ? void 0 : _execSync.toString()) || "";
@@ -1,6 +1,9 @@
1
- import { writeFileSync } from "node:fs";
2
- import { tmpdir } from "node:os";
3
- import { join } from "node:path";
1
+ import { writeFileSync } from "fs";
2
+ import { tmpdir } from "os";
3
+ import { join } from "path";
4
+ function _instanceof(left, right) {
5
+ return right != null && typeof Symbol < "u" && right[Symbol.hasInstance] ? !!right[Symbol.hasInstance](left) : left instanceof right;
6
+ }
4
7
  function mustReplace(source, replacements) {
5
8
  var sourceOut = source,
6
9
  _iteratorNormalCompletion = !0,
@@ -14,7 +17,7 @@ function mustReplace(source, replacements) {
14
17
  optional
15
18
  } = _step.value;
16
19
  if (!optional) {
17
- var found = find instanceof RegExp ? find.test(sourceOut) : sourceOut.includes(find);
20
+ var found = _instanceof(find, RegExp) ? find.test(sourceOut) : sourceOut.includes(find);
18
21
  if (!found) {
19
22
  var tmpPath = join(tmpdir(), `replace-error-${Math.random()}`);
20
23
  throw writeFileSync(tmpPath, sourceOut, "utf-8"), new Error(`Substring or pattern "${find}" not found in the string, replacing in source: ${tmpPath}.`);
@@ -1 +1 @@
1
- {"version":3,"names":["writeFileSync","tmpdir","join","mustReplace","source","replacements","sourceOut","_iteratorNormalCompletion","_didIteratorError","_iteratorError","_iterator","Symbol","iterator","_step","next","done","find","replace","optional","value","found","RegExp","test","includes","tmpPath","Math","random","Error"],"sources":["../../src/mustReplace.ts"],"sourcesContent":[null],"mappings":"AAAA,SAASA,aAAA,QAAqB;AAC9B,SAASC,MAAA,QAAc;AACvB,SAASC,IAAA,QAAY;AAEd,SAASC,YACdC,MAAA,EACAC,YAAA,EAKA;EACA,IAAIC,SAAA,GAAYF,MAAA;IAAAG,yBAAA;IAAAC,iBAAA;IAAAC,cAAA;EAChB;IACE,KAAK,IAAAC,SAEC,GADUL,YAAA,CAAAM,MAAgB,CAAAC,QAAc,KAAKC,KAAA,IAASN,yBAAuB,GAAI,CAAAM,KACzE,GAAAH,SAAA,CAAAI,IAAA,IAAAC,IAAA,GAAAR,yBAAA;MACV;QAAMS,IAAA;QAAAC,OAAU;QAAKC;MAAO,CAAG,GAAAL,KAAA,CAAAM,KAAA;MAC/B,KAAAD,QAAA;QAEE,IAAAE,KAAA,GAAAJ,IAAA,YAAyBK,MAAI,GAAAL,IAAA,CAAAM,IAAA,CAAAhB,SAAA,IAAAA,SAAA,CAAAiB,QAAA,CAAAP,IAAmD;QAClF,KAAAI,KAAA;UACF,IAAAI,OAAA,GAAAtB,IAAA,CAAAD,MAAA,qBAAAwB,IAAA,CAAAC,MAAA;UAIF,MAAY1B,aAAU,CAAAwB,OAAQ,EAAAlB,SAAa,gBAAAqB,KAAA,0BAAAX,IAAA,mDAAAQ,OAAA;QAC7C;MACA;MACFlB,SAAA,GAAAA,SAAA,CAAAW,OAAA,CAAAD,IAAA,EAAAC,OAAA","ignoreList":[]}
1
+ {"version":3,"names":["writeFileSync","tmpdir","join","_instanceof","left","right","Symbol","hasInstance","mustReplace","source","replacements","sourceOut","_iteratorNormalCompletion","_didIteratorError","_iteratorError","_iterator","iterator","_step","next","done","find","replace","optional","value","found","RegExp","test","includes","tmpPath","Math","random","Error"],"sources":["../../src/mustReplace.ts"],"sourcesContent":[null],"mappings":"AAAA,SAASA,aAAA,QAAqB;AAC9B,SAASC,MAAA,QAAc;AACvB,SAASC,IAAA,QAAY;AAEd,SAASC,YACdC,IAAA,EAAAC,KACA;EAMA,OAAIA,KAAA,IAAY,eAAAC,MAAA,UAAAD,KAAA,CAAAC,MAAA,CAAAC,WAAA,MAAAF,KAAA,CAAAC,MAAA,CAAAC,WAAA,EAAAH,IAAA,IAAAA,IAAA,YAAAC,KAAA;AAChB;AACE,SAAKG,YAECC,MADU,EAAAC,YAAgB;EAE5B,IAAAC,SAAM,GAAAF,MAAU;IAAAG,yBAAe,GAAiB;IAAAC,iBAAe;IAAAC,cAAA;EAC/D;IACU,KACR,IAAAC,SAAA,GAAAL,YAA6B,CAAAJ,MAAA,CAAAU,QAAA,KAAAC,KAAA,IAAAL,yBAAmD,GAAO,CAAAK,KAAA,GAAAF,SAAA,CAAAG,IAAA,IAAAC,IAAA,GAAAP,yBAAA;MACzF;QAAAQ,IAAA;QAAAC,OAAA;QAAAC;MAAA,IAAAL,KAAA,CAAAM,KAAA;MACF,KAAAD,QAAA;QAIF,IAAAE,KAAY,GAAArB,WAAU,CAAAiB,IAAQ,EAAAK,MAAM,IAAOL,IAAA,CAAAM,IAAA,CAAAf,SAAA,IAAAA,SAAA,CAAAgB,QAAA,CAAAP,IAAA;QAC7C,KAAAI,KAAA;UACO,IAAAI,OAAA,GAAA1B,IAAA,CAAAD,MAAA,qBAAA4B,IAAA,CAAAC,MAAA;UACT,MAAA9B,aAAA,CAAA4B,OAAA,EAAAjB,SAAA,gBAAAoB,KAAA,0BAAAX,IAAA,mDAAAQ,OAAA","ignoreList":[]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vxrn/utils",
3
- "version": "1.1.538",
3
+ "version": "1.1.539",
4
4
  "sideEffects": false,
5
5
  "type": "module",
6
6
  "types": "./types/index.d.ts",
@@ -32,11 +32,11 @@
32
32
  "clean:build": "tamagui-build clean:build"
33
33
  },
34
34
  "dependencies": {
35
- "@vxrn/debug": "1.1.538",
36
- "@vxrn/resolve": "1.1.538"
35
+ "@vxrn/debug": "1.1.539",
36
+ "@vxrn/resolve": "1.1.539"
37
37
  },
38
38
  "devDependencies": {
39
- "@tamagui/build": "^1.132.23"
39
+ "@tamagui/build": "^1.135.6"
40
40
  },
41
41
  "publishConfig": {
42
42
  "access": "public"