@vuetify/cli 1.1.5-beta.2 → 1.1.6
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/{chunk-D1copJQv.mjs → chunk-4zg6TaOy.mjs} +7 -13
- package/dist/index.mjs +6028 -6096
- package/dist/{jiti-C_tmzcsl.mjs → jiti-CeHW56Xt.mjs} +5 -10
- package/dist/nypm-B0R09qA9.mjs +3 -0
- package/dist/{nypm-Bg2ry-tJ.mjs → nypm-BiogvDa_.mjs} +8 -19
- package/dist/{rolldown-runtime-BM60vSjP.mjs → rolldown-runtime-1wn-XonI.mjs} +1 -2
- package/dist/{src-Cc5BV24k.mjs → src-CiZqY_Es.mjs} +4 -14
- package/dist/{tar-CDUmqXZq.mjs → tar-D0wLsG-Y.mjs} +39 -44
- package/package.json +122 -7
- package/dist/nypm-Dl0ysHx5.mjs +0 -4
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import { i as __toESM, n as __esmMin, r as __require, t as __commonJSMin } from "./chunk-
|
|
2
|
+
import { i as __toESM, n as __esmMin, r as __require, t as __commonJSMin } from "./chunk-4zg6TaOy.mjs";
|
|
3
3
|
import { createRequire } from "node:module";
|
|
4
|
-
|
|
5
4
|
//#region ../../node_modules/.pnpm/jiti@2.6.1/node_modules/jiti/dist/jiti.cjs
|
|
6
5
|
var require_jiti = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
7
6
|
(() => {
|
|
@@ -4449,7 +4448,6 @@ var require_jiti = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
4449
4448
|
})(), module.exports = i.default;
|
|
4450
4449
|
})();
|
|
4451
4450
|
}));
|
|
4452
|
-
|
|
4453
4451
|
//#endregion
|
|
4454
4452
|
//#region ../../node_modules/.pnpm/jiti@2.6.1/node_modules/jiti/lib/jiti.mjs
|
|
4455
4453
|
function onError(err) {
|
|
@@ -4471,12 +4469,9 @@ function createJiti(id, opts = {}) {
|
|
|
4471
4469
|
});
|
|
4472
4470
|
}
|
|
4473
4471
|
var import_jiti, nativeImport, _transform;
|
|
4474
|
-
|
|
4472
|
+
//#endregion
|
|
4473
|
+
__esmMin((() => {
|
|
4475
4474
|
import_jiti = /* @__PURE__ */ __toESM(require_jiti(), 1);
|
|
4476
4475
|
nativeImport = (id) => import(id);
|
|
4477
|
-
|
|
4478
|
-
}
|
|
4479
|
-
|
|
4480
|
-
//#endregion
|
|
4481
|
-
init_jiti();
|
|
4482
|
-
export { createJiti, createJiti as default };
|
|
4476
|
+
}))();
|
|
4477
|
+
export { createJiti, createJiti as default };
|
|
@@ -1,20 +1,19 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import { t as __exportAll } from "./rolldown-runtime-
|
|
2
|
+
import { t as __exportAll } from "./rolldown-runtime-1wn-XonI.mjs";
|
|
3
3
|
import { cwd } from "node:process";
|
|
4
4
|
import c from "node:readline";
|
|
5
5
|
import { existsSync } from "node:fs";
|
|
6
|
-
import { delimiter, dirname,
|
|
6
|
+
import { delimiter, dirname, normalize, resolve } from "node:path";
|
|
7
7
|
import { readFile } from "node:fs/promises";
|
|
8
8
|
import { createRequire as createRequire$1 } from "module";
|
|
9
9
|
import { PassThrough } from "node:stream";
|
|
10
10
|
import { spawn } from "node:child_process";
|
|
11
|
-
|
|
12
11
|
//#region ../../node_modules/.pnpm/giget@3.1.2/node_modules/giget/dist/_chunks/libs/nypm.mjs
|
|
13
12
|
const _DRIVE_LETTER_START_RE = /^[A-Za-z]:\//;
|
|
14
13
|
function normalizeWindowsPath(e = ``) {
|
|
15
14
|
return e && e.replace(/\\/g, `/`).replace(_DRIVE_LETTER_START_RE, (e) => e.toUpperCase());
|
|
16
15
|
}
|
|
17
|
-
const _UNC_REGEX = /^[/\\]{2}/, _IS_ABSOLUTE_RE = /^[/\\](?![/\\])|^[/\\]{2}(?!\.)|^[A-Za-z]:[/\\]/, _DRIVE_LETTER_RE = /^[A-Za-z]:$/,
|
|
16
|
+
const _UNC_REGEX = /^[/\\]{2}/, _IS_ABSOLUTE_RE = /^[/\\](?![/\\])|^[/\\]{2}(?!\.)|^[A-Za-z]:[/\\]/, _DRIVE_LETTER_RE = /^[A-Za-z]:$/, normalize$1 = function(e) {
|
|
18
17
|
if (e.length === 0) return `.`;
|
|
19
18
|
e = normalizeWindowsPath(e);
|
|
20
19
|
let t = e.match(_UNC_REGEX), n = isAbsolute$1(e), r = e[e.length - 1] === `/`;
|
|
@@ -66,15 +65,6 @@ function normalizeString(e, t) {
|
|
|
66
65
|
}
|
|
67
66
|
const isAbsolute$1 = function(e) {
|
|
68
67
|
return _IS_ABSOLUTE_RE.test(e);
|
|
69
|
-
}, relative = function(e, t) {
|
|
70
|
-
let n = resolve$1(e).replace(_ROOT_FOLDER_RE, `$1`).split(`/`), r = resolve$1(t).replace(_ROOT_FOLDER_RE, `$1`).split(`/`);
|
|
71
|
-
if (r[0][1] === `:` && n[0][1] === `:` && n[0] !== r[0]) return r.join(`/`);
|
|
72
|
-
let i = [...n];
|
|
73
|
-
for (let e of i) {
|
|
74
|
-
if (r[0] !== e) break;
|
|
75
|
-
n.shift(), r.shift();
|
|
76
|
-
}
|
|
77
|
-
return [...n.map(() => `..`), ...r].join(`/`);
|
|
78
68
|
}, dirname$1 = function(e) {
|
|
79
69
|
let t = normalizeWindowsPath(e).replace(/\/$/, ``).split(`/`).slice(0, -1);
|
|
80
70
|
return t.length === 1 && _DRIVE_LETTER_RE.test(t[0]) && (t[0] += `/`), t.join(`/`) || (isAbsolute$1(e) ? `/` : `.`);
|
|
@@ -285,7 +275,7 @@ var T = h((e, t) => {
|
|
|
285
275
|
t.exports.command = r, t.exports.argument = i;
|
|
286
276
|
}), M = h((e, t) => {
|
|
287
277
|
t.exports = /^#!(.*)/;
|
|
288
|
-
}), N = h((e, t) => {
|
|
278
|
+
}), N$1 = h((e, t) => {
|
|
289
279
|
let n = M();
|
|
290
280
|
t.exports = (e = ``) => {
|
|
291
281
|
let t = e.match(n);
|
|
@@ -293,8 +283,8 @@ var T = h((e, t) => {
|
|
|
293
283
|
let [r, i] = t[0].replace(/#! ?/, ``).split(` `), a = r.split(`/`).pop();
|
|
294
284
|
return a === `env` ? i : i ? `${a} ${i}` : a;
|
|
295
285
|
};
|
|
296
|
-
}), P
|
|
297
|
-
let n = v(`fs`), r = N();
|
|
286
|
+
}), P = h((e, t) => {
|
|
287
|
+
let n = v(`fs`), r = N$1();
|
|
298
288
|
function i(e) {
|
|
299
289
|
let t = Buffer.alloc(150), i;
|
|
300
290
|
try {
|
|
@@ -304,7 +294,7 @@ var T = h((e, t) => {
|
|
|
304
294
|
}
|
|
305
295
|
t.exports = i;
|
|
306
296
|
}), F = h((e, t) => {
|
|
307
|
-
let n = v(`path`), r = A(), i = j(), a = P
|
|
297
|
+
let n = v(`path`), r = A(), i = j(), a = P(), o = process.platform === `win32`, s = /\.(?:com|exe)$/i, L = /node_modules[\\/].bin[\\/][^\\/]+\.cmd$/i;
|
|
308
298
|
function J(e) {
|
|
309
299
|
e.file = r(e);
|
|
310
300
|
let t = e.file && a(e.file);
|
|
@@ -676,6 +666,5 @@ async function installDependencies(e = {}) {
|
|
|
676
666
|
args: n
|
|
677
667
|
} };
|
|
678
668
|
}
|
|
679
|
-
|
|
680
669
|
//#endregion
|
|
681
|
-
export { resolve$1 as i, dirname$1 as n, dist_exports as r, basename$1 as t };
|
|
670
|
+
export { resolve$1 as i, dirname$1 as n, dist_exports as r, basename$1 as t };
|
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import { n as __esmMin } from "./chunk-
|
|
2
|
+
import { n as __esmMin } from "./chunk-4zg6TaOy.mjs";
|
|
3
3
|
import path from "node:path";
|
|
4
4
|
import fs from "node:fs/promises";
|
|
5
5
|
import { fileURLToPath } from "node:url";
|
|
6
|
-
|
|
7
6
|
//#region ../../node_modules/.pnpm/@humanfs+core@0.19.1/node_modules/@humanfs/core/src/hfs.js
|
|
8
7
|
/**
|
|
9
8
|
* Asserts that the given path is a valid file path.
|
|
@@ -528,18 +527,15 @@ var init_hfs = __esmMin((() => {
|
|
|
528
527
|
}
|
|
529
528
|
};
|
|
530
529
|
}));
|
|
531
|
-
|
|
532
530
|
//#endregion
|
|
533
531
|
//#region ../../node_modules/.pnpm/@humanfs+core@0.19.1/node_modules/@humanfs/core/src/errors.js
|
|
534
532
|
var init_errors = __esmMin((() => {}));
|
|
535
|
-
|
|
536
533
|
//#endregion
|
|
537
534
|
//#region ../../node_modules/.pnpm/@humanfs+core@0.19.1/node_modules/@humanfs/core/src/index.js
|
|
538
535
|
var init_src$1 = __esmMin((() => {
|
|
539
536
|
init_hfs();
|
|
540
537
|
init_errors();
|
|
541
538
|
}));
|
|
542
|
-
|
|
543
539
|
//#endregion
|
|
544
540
|
//#region ../../node_modules/.pnpm/@humanwhocodes+retry@0.4.3/node_modules/@humanwhocodes/retry/dist/retrier.js
|
|
545
541
|
/**
|
|
@@ -873,7 +869,6 @@ var init_retrier = __esmMin((() => {
|
|
|
873
869
|
}
|
|
874
870
|
};
|
|
875
871
|
}));
|
|
876
|
-
|
|
877
872
|
//#endregion
|
|
878
873
|
//#region ../../node_modules/.pnpm/@humanfs+node@0.16.7/node_modules/@humanfs/node/src/node-hfs.js
|
|
879
874
|
var RETRY_ERROR_CODES, NodeHfsDirectoryEntry, NodeHfsImpl, NodeHfs, hfs;
|
|
@@ -1164,14 +1159,9 @@ var init_node_hfs = __esmMin((() => {
|
|
|
1164
1159
|
};
|
|
1165
1160
|
hfs = new NodeHfs();
|
|
1166
1161
|
}));
|
|
1167
|
-
|
|
1168
1162
|
//#endregion
|
|
1169
|
-
|
|
1170
|
-
var init_src = __esmMin((() => {
|
|
1163
|
+
__esmMin((() => {
|
|
1171
1164
|
init_node_hfs();
|
|
1172
1165
|
init_src$1();
|
|
1173
|
-
}));
|
|
1174
|
-
|
|
1175
|
-
//#endregion
|
|
1176
|
-
init_src();
|
|
1177
|
-
export { hfs };
|
|
1166
|
+
}))();
|
|
1167
|
+
export { hfs };
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import { t as __exportAll } from "./rolldown-runtime-
|
|
3
|
-
import
|
|
2
|
+
import { t as __exportAll } from "./rolldown-runtime-1wn-XonI.mjs";
|
|
3
|
+
import i from "node:assert";
|
|
4
4
|
import fs from "node:fs";
|
|
5
5
|
import path, { basename, join, posix, win32 } from "node:path";
|
|
6
6
|
import fs$1 from "node:fs/promises";
|
|
7
|
-
import
|
|
7
|
+
import nativeFs from "fs";
|
|
8
8
|
import path$1, { dirname as dirname$1, parse } from "path";
|
|
9
9
|
import assert from "assert";
|
|
10
10
|
import EE, { EventEmitter } from "events";
|
|
@@ -15,7 +15,6 @@ import { Buffer as Buffer$1 } from "buffer";
|
|
|
15
15
|
import * as realZlib$1 from "zlib";
|
|
16
16
|
import realZlib from "zlib";
|
|
17
17
|
import { randomBytes } from "node:crypto";
|
|
18
|
-
|
|
19
18
|
//#region ../../node_modules/.pnpm/giget@3.1.2/node_modules/giget/dist/_chunks/libs/@isaacs/fs-minipass.mjs
|
|
20
19
|
const proc = typeof process == `object` && process ? process : {
|
|
21
20
|
stdout: null,
|
|
@@ -341,7 +340,7 @@ while (this[FLUSHCHUNK](this[BUFFERSHIFT]()) && this[BUFFER$1].length);
|
|
|
341
340
|
return isStream;
|
|
342
341
|
}
|
|
343
342
|
};
|
|
344
|
-
const writev =
|
|
343
|
+
const writev = nativeFs.writev, _autoClose = Symbol(`_autoClose`), _close = Symbol(`_close`), _ended = Symbol(`_ended`), _fd = Symbol(`_fd`), _finished = Symbol(`_finished`), _flags = Symbol(`_flags`), _flush = Symbol(`_flush`), _handleChunk = Symbol(`_handleChunk`), _makeBuf = Symbol(`_makeBuf`), _mode = Symbol(`_mode`), _needDrain = Symbol(`_needDrain`), _onerror = Symbol(`_onerror`), _onopen = Symbol(`_onopen`), _onread = Symbol(`_onread`), _onwrite = Symbol(`_onwrite`), _open = Symbol(`_open`), _path = Symbol(`_path`), _pos = Symbol(`_pos`), _queue = Symbol(`_queue`), _read = Symbol(`_read`), _readSize = Symbol(`_readSize`), _reading = Symbol(`_reading`), _remain = Symbol(`_remain`), _size = Symbol(`_size`), _write = Symbol(`_write`), _writing = Symbol(`_writing`), _defaultFlag = Symbol(`_defaultFlag`), _errored = Symbol(`_errored`);
|
|
345
344
|
var ReadStream = class extends Minipass {
|
|
346
345
|
[_errored] = !1;
|
|
347
346
|
[_fd];
|
|
@@ -368,7 +367,7 @@ var ReadStream = class extends Minipass {
|
|
|
368
367
|
throw TypeError(`this is a readable stream`);
|
|
369
368
|
}
|
|
370
369
|
[_open]() {
|
|
371
|
-
|
|
370
|
+
nativeFs.open(this[_path], `r`, (e, t) => this[_onopen](e, t));
|
|
372
371
|
}
|
|
373
372
|
[_onopen](e, t) {
|
|
374
373
|
e ? this[_onerror](e) : (this[_fd] = t, this.emit(`open`, t), this[_read]());
|
|
@@ -381,7 +380,7 @@ var ReadStream = class extends Minipass {
|
|
|
381
380
|
this[_reading] = !0;
|
|
382
381
|
let e = this[_makeBuf]();
|
|
383
382
|
if (e.length === 0) return process.nextTick(() => this[_onread](null, 0, e));
|
|
384
|
-
|
|
383
|
+
nativeFs.read(this[_fd], e, 0, e.length, null, (e, t, n) => this[_onread](e, t, n));
|
|
385
384
|
}
|
|
386
385
|
}
|
|
387
386
|
[_onread](e, t, n) {
|
|
@@ -390,7 +389,7 @@ var ReadStream = class extends Minipass {
|
|
|
390
389
|
[_close]() {
|
|
391
390
|
if (this[_autoClose] && typeof this[_fd] == `number`) {
|
|
392
391
|
let e = this[_fd];
|
|
393
|
-
this[_fd] = void 0,
|
|
392
|
+
this[_fd] = void 0, nativeFs.close(e, (e) => e ? this.emit(`error`, e) : this.emit(`close`));
|
|
394
393
|
}
|
|
395
394
|
}
|
|
396
395
|
[_onerror](e) {
|
|
@@ -413,7 +412,7 @@ var ReadStream = class extends Minipass {
|
|
|
413
412
|
[_open]() {
|
|
414
413
|
let e = !0;
|
|
415
414
|
try {
|
|
416
|
-
this[_onopen](null,
|
|
415
|
+
this[_onopen](null, nativeFs.openSync(this[_path], `r`)), e = !1;
|
|
417
416
|
} finally {
|
|
418
417
|
e && this[_close]();
|
|
419
418
|
}
|
|
@@ -424,7 +423,7 @@ var ReadStream = class extends Minipass {
|
|
|
424
423
|
if (!this[_reading]) {
|
|
425
424
|
this[_reading] = !0;
|
|
426
425
|
do {
|
|
427
|
-
let e = this[_makeBuf](), t = e.length === 0 ? 0 :
|
|
426
|
+
let e = this[_makeBuf](), t = e.length === 0 ? 0 : nativeFs.readSync(this[_fd], e, 0, e.length, null);
|
|
428
427
|
if (!this[_handleChunk](t, e)) break;
|
|
429
428
|
} while (!0);
|
|
430
429
|
this[_reading] = !1;
|
|
@@ -437,7 +436,7 @@ var ReadStream = class extends Minipass {
|
|
|
437
436
|
[_close]() {
|
|
438
437
|
if (this[_autoClose] && typeof this[_fd] == `number`) {
|
|
439
438
|
let e = this[_fd];
|
|
440
|
-
this[_fd] = void 0,
|
|
439
|
+
this[_fd] = void 0, nativeFs.closeSync(e), this.emit(`close`);
|
|
441
440
|
}
|
|
442
441
|
}
|
|
443
442
|
}, WriteStream = class extends EE {
|
|
@@ -478,7 +477,7 @@ var ReadStream = class extends Minipass {
|
|
|
478
477
|
this[_close](), this[_writing] = !0, this.emit(`error`, e);
|
|
479
478
|
}
|
|
480
479
|
[_open]() {
|
|
481
|
-
|
|
480
|
+
nativeFs.open(this[_path], this[_flags], this[_mode], (e, t) => this[_onopen](e, t));
|
|
482
481
|
}
|
|
483
482
|
[_onopen](e, t) {
|
|
484
483
|
this[_defaultFlag] && this[_flags] === `r+` && e && e.code === `ENOENT` ? (this[_flags] = `w`, this[_open]()) : e ? this[_onerror](e) : (this[_fd] = t, this.emit(`open`, t), this[_writing] || this[_flush]());
|
|
@@ -490,7 +489,7 @@ var ReadStream = class extends Minipass {
|
|
|
490
489
|
return typeof e == `string` && (e = Buffer.from(e, t)), this[_ended] ? (this.emit(`error`, Error(`write() after end()`)), !1) : this[_fd] === void 0 || this[_writing] || this[_queue].length ? (this[_queue].push(e), this[_needDrain] = !0, !1) : (this[_writing] = !0, this[_write](e), !0);
|
|
491
490
|
}
|
|
492
491
|
[_write](e) {
|
|
493
|
-
|
|
492
|
+
nativeFs.write(this[_fd], e, 0, e.length, this[_pos], (e, t) => this[_onwrite](e, t));
|
|
494
493
|
}
|
|
495
494
|
[_onwrite](e, t) {
|
|
496
495
|
e ? this[_onerror](e) : (this[_pos] !== void 0 && typeof t == `number` && (this[_pos] += t), this[_queue].length ? this[_flush]() : (this[_writing] = !1, this[_ended] && !this[_finished] ? (this[_finished] = !0, this[_close](), this.emit(`finish`)) : this[_needDrain] && (this[_needDrain] = !1, this.emit(`drain`))));
|
|
@@ -506,31 +505,31 @@ var ReadStream = class extends Minipass {
|
|
|
506
505
|
[_close]() {
|
|
507
506
|
if (this[_autoClose] && typeof this[_fd] == `number`) {
|
|
508
507
|
let e = this[_fd];
|
|
509
|
-
this[_fd] = void 0,
|
|
508
|
+
this[_fd] = void 0, nativeFs.close(e, (e) => e ? this.emit(`error`, e) : this.emit(`close`));
|
|
510
509
|
}
|
|
511
510
|
}
|
|
512
511
|
}, WriteStreamSync = class extends WriteStream {
|
|
513
512
|
[_open]() {
|
|
514
513
|
let e;
|
|
515
514
|
if (this[_defaultFlag] && this[_flags] === `r+`) try {
|
|
516
|
-
e =
|
|
515
|
+
e = nativeFs.openSync(this[_path], this[_flags], this[_mode]);
|
|
517
516
|
} catch (e) {
|
|
518
517
|
if (e?.code === `ENOENT`) return this[_flags] = `w`, this[_open]();
|
|
519
518
|
throw e;
|
|
520
519
|
}
|
|
521
|
-
else e =
|
|
520
|
+
else e = nativeFs.openSync(this[_path], this[_flags], this[_mode]);
|
|
522
521
|
this[_onopen](null, e);
|
|
523
522
|
}
|
|
524
523
|
[_close]() {
|
|
525
524
|
if (this[_autoClose] && typeof this[_fd] == `number`) {
|
|
526
525
|
let e = this[_fd];
|
|
527
|
-
this[_fd] = void 0,
|
|
526
|
+
this[_fd] = void 0, nativeFs.closeSync(e), this.emit(`close`);
|
|
528
527
|
}
|
|
529
528
|
}
|
|
530
529
|
[_write](e) {
|
|
531
530
|
let t = !0;
|
|
532
531
|
try {
|
|
533
|
-
this[_onwrite](null,
|
|
532
|
+
this[_onwrite](null, nativeFs.writeSync(this[_fd], e, 0, e.length, this[_pos])), t = !1;
|
|
534
533
|
} finally {
|
|
535
534
|
if (t) try {
|
|
536
535
|
this[_close]();
|
|
@@ -538,7 +537,6 @@ var ReadStream = class extends Minipass {
|
|
|
538
537
|
}
|
|
539
538
|
}
|
|
540
539
|
};
|
|
541
|
-
|
|
542
540
|
//#endregion
|
|
543
541
|
//#region ../../node_modules/.pnpm/giget@3.1.2/node_modules/giget/dist/_chunks/libs/minizlib.mjs
|
|
544
542
|
const realZlibConstants = realZlib.constants || { ZLIB_VERNUM: 4736 }, constants$1 = Object.freeze(Object.assign(Object.create(null), {
|
|
@@ -796,7 +794,6 @@ var ZlibBase = class extends Minipass {
|
|
|
796
794
|
super(e, `ZstdDecompress`);
|
|
797
795
|
}
|
|
798
796
|
};
|
|
799
|
-
|
|
800
797
|
//#endregion
|
|
801
798
|
//#region ../../node_modules/.pnpm/giget@3.1.2/node_modules/giget/dist/_chunks/libs/chownr.mjs
|
|
802
799
|
const lchownSync = (t, n, r) => {
|
|
@@ -844,7 +841,6 @@ const lchownSync = (t, n, r) => {
|
|
|
844
841
|
for (let e of a) chownrKidSync(t, e, r, i);
|
|
845
842
|
return lchownSync(t, r, i);
|
|
846
843
|
};
|
|
847
|
-
|
|
848
844
|
//#endregion
|
|
849
845
|
//#region ../../node_modules/.pnpm/giget@3.1.2/node_modules/giget/dist/_chunks/libs/tar.mjs
|
|
850
846
|
const argmap = new Map([
|
|
@@ -1524,7 +1520,7 @@ var WriteEntry = class extends Minipass {
|
|
|
1524
1520
|
return e === `error` && (this.#hadError = !0), super.emit(e, ...t);
|
|
1525
1521
|
}
|
|
1526
1522
|
[LSTAT]() {
|
|
1527
|
-
|
|
1523
|
+
nativeFs.lstat(this.absolute, (e, t) => {
|
|
1528
1524
|
if (e) return this.emit(`error`, e);
|
|
1529
1525
|
this[ONLSTAT](t);
|
|
1530
1526
|
});
|
|
@@ -1583,7 +1579,7 @@ var WriteEntry = class extends Minipass {
|
|
|
1583
1579
|
this.path.slice(-1) !== `/` && (this.path += `/`), this.stat.size = 0, this[HEADER](), this.end();
|
|
1584
1580
|
}
|
|
1585
1581
|
[SYMLINK$1]() {
|
|
1586
|
-
|
|
1582
|
+
nativeFs.readlink(this.absolute, (e, t) => {
|
|
1587
1583
|
if (e) return this.emit(`error`, e);
|
|
1588
1584
|
this[ONREADLINK](t);
|
|
1589
1585
|
});
|
|
@@ -1606,7 +1602,7 @@ var WriteEntry = class extends Minipass {
|
|
|
1606
1602
|
this[OPENFILE]();
|
|
1607
1603
|
}
|
|
1608
1604
|
[OPENFILE]() {
|
|
1609
|
-
|
|
1605
|
+
nativeFs.open(this.absolute, `r`, (e, t) => {
|
|
1610
1606
|
if (e) return this.emit(`error`, e);
|
|
1611
1607
|
this[ONOPENFILE](t);
|
|
1612
1608
|
});
|
|
@@ -1621,13 +1617,13 @@ var WriteEntry = class extends Minipass {
|
|
|
1621
1617
|
[READ]() {
|
|
1622
1618
|
let { fd: e, buf: t, offset: n, length: r, pos: i } = this;
|
|
1623
1619
|
if (e === void 0 || t === void 0) throw Error(`cannot read file without first opening`);
|
|
1624
|
-
|
|
1620
|
+
nativeFs.read(e, t, n, r, i, (e, t) => {
|
|
1625
1621
|
if (e) return this[CLOSE](() => this.emit(`error`, e));
|
|
1626
1622
|
this[ONREAD](t);
|
|
1627
1623
|
});
|
|
1628
1624
|
}
|
|
1629
1625
|
[CLOSE](e = () => {}) {
|
|
1630
|
-
this.fd !== void 0 &&
|
|
1626
|
+
this.fd !== void 0 && nativeFs.close(this.fd, e);
|
|
1631
1627
|
}
|
|
1632
1628
|
[ONREAD](e) {
|
|
1633
1629
|
if (e <= 0 && this.remain > 0) {
|
|
@@ -1669,20 +1665,20 @@ var WriteEntry = class extends Minipass {
|
|
|
1669
1665
|
}, WriteEntrySync = class extends WriteEntry {
|
|
1670
1666
|
sync = !0;
|
|
1671
1667
|
[LSTAT]() {
|
|
1672
|
-
this[ONLSTAT](
|
|
1668
|
+
this[ONLSTAT](nativeFs.lstatSync(this.absolute));
|
|
1673
1669
|
}
|
|
1674
1670
|
[SYMLINK$1]() {
|
|
1675
|
-
this[ONREADLINK](
|
|
1671
|
+
this[ONREADLINK](nativeFs.readlinkSync(this.absolute));
|
|
1676
1672
|
}
|
|
1677
1673
|
[OPENFILE]() {
|
|
1678
|
-
this[ONOPENFILE](
|
|
1674
|
+
this[ONOPENFILE](nativeFs.openSync(this.absolute, `r`));
|
|
1679
1675
|
}
|
|
1680
1676
|
[READ]() {
|
|
1681
1677
|
let e = !0;
|
|
1682
1678
|
try {
|
|
1683
1679
|
let { fd: t, buf: n, offset: r, length: i, pos: a } = this;
|
|
1684
1680
|
if (t === void 0 || n === void 0) throw Error(`fd and buf must be set in READ method`);
|
|
1685
|
-
let o =
|
|
1681
|
+
let o = nativeFs.readSync(t, n, r, i, a);
|
|
1686
1682
|
this[ONREAD](o), e = !1;
|
|
1687
1683
|
} finally {
|
|
1688
1684
|
if (e) try {
|
|
@@ -1694,7 +1690,7 @@ var WriteEntry = class extends Minipass {
|
|
|
1694
1690
|
e();
|
|
1695
1691
|
}
|
|
1696
1692
|
[CLOSE](e = () => {}) {
|
|
1697
|
-
this.fd !== void 0 &&
|
|
1693
|
+
this.fd !== void 0 && nativeFs.closeSync(this.fd), e();
|
|
1698
1694
|
}
|
|
1699
1695
|
}, WriteEntryTar = class extends Minipass {
|
|
1700
1696
|
blockLen = 0;
|
|
@@ -2026,7 +2022,7 @@ var Pack = class extends Minipass {
|
|
|
2026
2022
|
this[QUEUE].push(new PackJob(e, t)), this[PROCESS]();
|
|
2027
2023
|
}
|
|
2028
2024
|
[STAT](e) {
|
|
2029
|
-
e.pending = !0, this[JOBS] += 1,
|
|
2025
|
+
e.pending = !0, this[JOBS] += 1, nativeFs[this.follow ? `stat` : `lstat`](e.absolute, (t, n) => {
|
|
2030
2026
|
e.pending = !1, --this[JOBS], t ? this.emit(`error`, t) : this[ONSTAT](e, n);
|
|
2031
2027
|
});
|
|
2032
2028
|
}
|
|
@@ -2034,7 +2030,7 @@ var Pack = class extends Minipass {
|
|
|
2034
2030
|
this.statCache.set(e.absolute, t), e.stat = t, this.filter(e.path, t) ? t.isFile() && t.nlink > 1 && e === this[CURRENT] && !this.linkCache.get(`${t.dev}:${t.ino}`) && !this.sync && this[PROCESSJOB](e) : e.ignore = !0, this[PROCESS]();
|
|
2035
2031
|
}
|
|
2036
2032
|
[READDIR](e) {
|
|
2037
|
-
e.pending = !0, this[JOBS] += 1,
|
|
2033
|
+
e.pending = !0, this[JOBS] += 1, nativeFs.readdir(e.absolute, (t, n) => {
|
|
2038
2034
|
if (e.pending = !1, --this[JOBS], t) return this.emit(`error`, t);
|
|
2039
2035
|
this[ONREADDIR](e, n);
|
|
2040
2036
|
});
|
|
@@ -2138,10 +2134,10 @@ var Pack = class extends Minipass {
|
|
|
2138
2134
|
resume() {}
|
|
2139
2135
|
[STAT](e) {
|
|
2140
2136
|
let t = this.follow ? `statSync` : `lstatSync`;
|
|
2141
|
-
this[ONSTAT](e,
|
|
2137
|
+
this[ONSTAT](e, nativeFs[t](e.absolute));
|
|
2142
2138
|
}
|
|
2143
2139
|
[READDIR](e) {
|
|
2144
|
-
this[ONREADDIR](e,
|
|
2140
|
+
this[ONREADDIR](e, nativeFs.readdirSync(e.absolute));
|
|
2145
2141
|
}
|
|
2146
2142
|
[PIPE](e) {
|
|
2147
2143
|
let t = e.entry, n = this.zip;
|
|
@@ -2197,7 +2193,7 @@ makeCommand(createFileSync, createFile, (e, t) => {
|
|
|
2197
2193
|
}, (e, t) => {
|
|
2198
2194
|
if (!t?.length) throw TypeError(`no paths specified to add to archive`);
|
|
2199
2195
|
});
|
|
2200
|
-
const isWindows$2 = (process.env.__FAKE_PLATFORM__ || process.platform) === `win32`, { O_CREAT, O_TRUNC, O_WRONLY } =
|
|
2196
|
+
const isWindows$2 = (process.env.__FAKE_PLATFORM__ || process.platform) === `win32`, { O_CREAT, O_TRUNC, O_WRONLY } = nativeFs.constants, UV_FS_O_FILEMAP = Number(process.env.__FAKE_FS_O_FILENAME__) || nativeFs.constants.UV_FS_O_FILEMAP || 0, fMapEnabled = isWindows$2 && !!UV_FS_O_FILEMAP, fMapFlag = UV_FS_O_FILEMAP | O_TRUNC | O_CREAT | O_WRONLY, getWriteFlag = fMapEnabled ? (e) => e < 524288 ? fMapFlag : `w` : () => `w`;
|
|
2201
2197
|
var CwdError = class extends Error {
|
|
2202
2198
|
path;
|
|
2203
2199
|
code;
|
|
@@ -2478,17 +2474,17 @@ var Unpack = class extends Parser {
|
|
|
2478
2474
|
}
|
|
2479
2475
|
return !0;
|
|
2480
2476
|
}
|
|
2481
|
-
[ONENTRY](e
|
|
2482
|
-
if (!this[CHECKPATH](e
|
|
2483
|
-
switch (
|
|
2477
|
+
[ONENTRY](e) {
|
|
2478
|
+
if (!this[CHECKPATH](e)) return e.resume();
|
|
2479
|
+
switch (i.equal(typeof e.absolute, `string`), e.type) {
|
|
2484
2480
|
case `Directory`:
|
|
2485
|
-
case `GNUDumpDir`: e
|
|
2481
|
+
case `GNUDumpDir`: e.mode && (e.mode |= 448);
|
|
2486
2482
|
case `File`:
|
|
2487
2483
|
case `OldFile`:
|
|
2488
2484
|
case `ContiguousFile`:
|
|
2489
2485
|
case `Link`:
|
|
2490
|
-
case `SymbolicLink`: return this[CHECKFS](e
|
|
2491
|
-
default: return this[UNSUPPORTED](e
|
|
2486
|
+
case `SymbolicLink`: return this[CHECKFS](e);
|
|
2487
|
+
default: return this[UNSUPPORTED](e);
|
|
2492
2488
|
}
|
|
2493
2489
|
}
|
|
2494
2490
|
[ONERROR](e, t) {
|
|
@@ -2936,6 +2932,5 @@ var esm_exports = __exportAll({
|
|
|
2936
2932
|
list: () => list,
|
|
2937
2933
|
replace: () => replace
|
|
2938
2934
|
});
|
|
2939
|
-
|
|
2940
2935
|
//#endregion
|
|
2941
|
-
export { esm_exports as t };
|
|
2936
|
+
export { esm_exports as t };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vuetify/cli",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.6",
|
|
4
4
|
"description": "Vuetify CLI",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
@@ -26,24 +26,139 @@
|
|
|
26
26
|
"directory": "packages/cli"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
|
-
"@bomb.sh/tab": "^0.0.
|
|
30
|
-
"@clack/prompts": "^1.
|
|
31
|
-
"citty": "^0.2.
|
|
29
|
+
"@bomb.sh/tab": "^0.0.14",
|
|
30
|
+
"@clack/prompts": "^1.1.0",
|
|
31
|
+
"citty": "^0.2.1",
|
|
32
32
|
"giget": "^3.1.2",
|
|
33
33
|
"kolorist": "^1.8.0",
|
|
34
34
|
"nypm": "^0.6.5",
|
|
35
35
|
"open": "^11.0.0",
|
|
36
36
|
"pathe": "^2.0.3",
|
|
37
|
-
"tsdown": "^0.
|
|
38
|
-
"@vuetify/cli-shared": "1.1.
|
|
37
|
+
"tsdown": "^0.21.3",
|
|
38
|
+
"@vuetify/cli-shared": "1.1.6"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@typescript-eslint/parser": "^8.
|
|
41
|
+
"@typescript-eslint/parser": "^8.57.0"
|
|
42
42
|
},
|
|
43
43
|
"exports": {
|
|
44
44
|
".": "./dist/index.mjs",
|
|
45
45
|
"./package.json": "./package.json"
|
|
46
46
|
},
|
|
47
|
+
"inlinedDependencies": {
|
|
48
|
+
"@babel/parser": "7.29.0",
|
|
49
|
+
"@bomb.sh/tab": "0.0.14",
|
|
50
|
+
"@clack/core": "1.1.0",
|
|
51
|
+
"@clack/prompts": "1.1.0",
|
|
52
|
+
"@eslint-community/eslint-utils": "4.9.1",
|
|
53
|
+
"@eslint-community/regexpp": "4.12.2",
|
|
54
|
+
"@eslint/config-array": "0.21.2",
|
|
55
|
+
"@eslint/eslintrc": "3.3.5",
|
|
56
|
+
"@eslint/js": "9.39.4",
|
|
57
|
+
"@eslint/object-schema": "2.1.7",
|
|
58
|
+
"@eslint/plugin-kit": "0.4.1",
|
|
59
|
+
"@humanfs/core": "0.19.1",
|
|
60
|
+
"@humanfs/node": "0.16.7",
|
|
61
|
+
"@humanwhocodes/retry": "0.4.3",
|
|
62
|
+
"@sindresorhus/slugify": "3.0.0",
|
|
63
|
+
"@sindresorhus/transliterate": "2.3.1",
|
|
64
|
+
"acorn": "8.15.0",
|
|
65
|
+
"acorn-jsx": "5.3.2",
|
|
66
|
+
"ajv": "6.14.0",
|
|
67
|
+
"balanced-match": "1.0.2",
|
|
68
|
+
"bignumber.js": "9.3.1",
|
|
69
|
+
"brace-expansion": "1.1.12",
|
|
70
|
+
"bundle-name": "4.1.0",
|
|
71
|
+
"callsites": "3.1.0",
|
|
72
|
+
"citty": "0.2.1",
|
|
73
|
+
"concat-map": "0.0.1",
|
|
74
|
+
"confbox": "0.2.2",
|
|
75
|
+
"debug": "4.4.3",
|
|
76
|
+
"default-browser": "5.4.0",
|
|
77
|
+
"default-browser-id": "5.0.0",
|
|
78
|
+
"define-lazy-prop": "3.0.0",
|
|
79
|
+
"escape-string-regexp": [
|
|
80
|
+
"4.0.0",
|
|
81
|
+
"5.0.0"
|
|
82
|
+
],
|
|
83
|
+
"eslint": "9.39.4",
|
|
84
|
+
"eslint-scope": "8.4.0",
|
|
85
|
+
"eslint-visitor-keys": [
|
|
86
|
+
"3.4.3",
|
|
87
|
+
"4.2.1"
|
|
88
|
+
],
|
|
89
|
+
"espree": "10.4.0",
|
|
90
|
+
"esquery": "1.7.0",
|
|
91
|
+
"esrecurse": "4.3.0",
|
|
92
|
+
"estraverse": "5.3.0",
|
|
93
|
+
"esutils": "2.0.3",
|
|
94
|
+
"exsolve": "1.0.8",
|
|
95
|
+
"fast-deep-equal": "3.1.3",
|
|
96
|
+
"fast-json-stable-stringify": "2.1.0",
|
|
97
|
+
"fdir": "6.5.0",
|
|
98
|
+
"file-entry-cache": "8.0.0",
|
|
99
|
+
"find-up": "5.0.0",
|
|
100
|
+
"flat-cache": "4.0.1",
|
|
101
|
+
"flatted": "3.3.3",
|
|
102
|
+
"giget": "3.1.2",
|
|
103
|
+
"glob-parent": "6.0.2",
|
|
104
|
+
"globals": "14.0.0",
|
|
105
|
+
"has-flag": "4.0.0",
|
|
106
|
+
"i18n-js": "4.5.3",
|
|
107
|
+
"ignore": "5.3.2",
|
|
108
|
+
"import-fresh": "3.3.1",
|
|
109
|
+
"imurmurhash": "0.1.4",
|
|
110
|
+
"is-docker": "3.0.0",
|
|
111
|
+
"is-extglob": "2.1.1",
|
|
112
|
+
"is-glob": "4.0.3",
|
|
113
|
+
"is-in-ssh": "1.0.0",
|
|
114
|
+
"is-inside-container": "1.0.0",
|
|
115
|
+
"is-interactive": "2.0.0",
|
|
116
|
+
"is-wsl": "3.1.0",
|
|
117
|
+
"jiti": "2.6.1",
|
|
118
|
+
"json-buffer": "3.0.1",
|
|
119
|
+
"json-schema-traverse": "0.4.1",
|
|
120
|
+
"json-stable-stringify-without-jsonify": "1.0.1",
|
|
121
|
+
"keyv": "4.5.4",
|
|
122
|
+
"kolorist": "1.8.0",
|
|
123
|
+
"levn": "0.4.1",
|
|
124
|
+
"locate-path": "6.0.0",
|
|
125
|
+
"lodash": "4.17.21",
|
|
126
|
+
"lodash.merge": "4.6.2",
|
|
127
|
+
"magicast": "0.5.2",
|
|
128
|
+
"make-plural": "7.5.0",
|
|
129
|
+
"minimatch": "3.1.5",
|
|
130
|
+
"ms": "2.1.3",
|
|
131
|
+
"natural-compare": "1.4.0",
|
|
132
|
+
"nypm": "0.6.5",
|
|
133
|
+
"open": "11.0.0",
|
|
134
|
+
"p-limit": "3.1.0",
|
|
135
|
+
"p-locate": "5.0.0",
|
|
136
|
+
"package-manager-detector": "1.6.0",
|
|
137
|
+
"parent-module": "1.0.1",
|
|
138
|
+
"path-exists": "4.0.0",
|
|
139
|
+
"pathe": "2.0.3",
|
|
140
|
+
"picomatch": "4.0.3",
|
|
141
|
+
"pkg-types": "2.3.0",
|
|
142
|
+
"powershell-utils": "0.1.0",
|
|
143
|
+
"prelude-ls": "1.2.1",
|
|
144
|
+
"resolve-from": "4.0.0",
|
|
145
|
+
"run-applescript": "7.1.0",
|
|
146
|
+
"semver": "7.7.4",
|
|
147
|
+
"sisteransi": "1.0.5",
|
|
148
|
+
"strip-json-comments": "3.1.1",
|
|
149
|
+
"supports-color": "7.2.0",
|
|
150
|
+
"tinyexec": [
|
|
151
|
+
"1.0.2",
|
|
152
|
+
"1.0.4"
|
|
153
|
+
],
|
|
154
|
+
"tinyglobby": "0.2.15",
|
|
155
|
+
"type-check": "0.4.0",
|
|
156
|
+
"uri-js": "4.4.1",
|
|
157
|
+
"validate-npm-package-name": "7.0.2",
|
|
158
|
+
"vue-eslint-parser": "10.4.0",
|
|
159
|
+
"wsl-utils": "0.3.0",
|
|
160
|
+
"yocto-queue": "0.1.0"
|
|
161
|
+
},
|
|
47
162
|
"scripts": {
|
|
48
163
|
"build": "tsdown"
|
|
49
164
|
}
|
package/dist/nypm-Dl0ysHx5.mjs
DELETED