create-vuetify0 1.1.5 → 1.2.0-beta.1
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-4zg6TaOy.mjs +28 -0
- package/dist/ide-config-writer-BEf0T9lZ.mjs +1572 -0
- package/dist/ide-config-writer-DGxLWC5T.mjs +3 -0
- package/dist/index.mjs +111950 -18340
- package/dist/jiti-CiyXXzPA.mjs +4477 -0
- package/dist/{nypm-CKSClFuH.mjs → nypm-5aqJdyHJ.mjs} +9 -20
- package/dist/nypm-Cyp5vS3l.mjs +3 -0
- package/dist/{rolldown-runtime-DA-mFLXi.mjs → rolldown-runtime-CGkscm_g.mjs} +1 -2
- package/dist/src-IprYSasa.mjs +1167 -0
- package/dist/{tar-CuErG4Sg.mjs → tar-D0pLkBnc.mjs} +15 -20
- package/package.json +110 -7
- package/dist/nypm-5VB5YsHQ.mjs +0 -4
|
@@ -1,21 +1,20 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import { t as __exportAll } from "./rolldown-runtime-
|
|
3
|
-
import
|
|
2
|
+
import { t as __exportAll } from "./rolldown-runtime-CGkscm_g.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 Stream from "node:stream";
|
|
7
8
|
import nativeFs from "fs";
|
|
8
9
|
import path$1, { dirname as dirname$1, parse } from "path";
|
|
9
10
|
import assert from "assert";
|
|
10
11
|
import EE, { EventEmitter } from "events";
|
|
11
|
-
import Stream from "node:stream";
|
|
12
12
|
import { EventEmitter as EventEmitter$1 } from "node:events";
|
|
13
13
|
import { StringDecoder } from "node:string_decoder";
|
|
14
14
|
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,
|
|
@@ -538,10 +537,9 @@ 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
|
-
const realZlibConstants = realZlib.constants || { ZLIB_VERNUM: 4736 }, constants$
|
|
542
|
+
const realZlibConstants = realZlib.constants || { ZLIB_VERNUM: 4736 }, constants$2 = Object.freeze(Object.assign(Object.create(null), {
|
|
545
543
|
Z_NO_FLUSH: 0,
|
|
546
544
|
Z_PARTIAL_FLUSH: 1,
|
|
547
545
|
Z_SYNC_FLUSH: 2,
|
|
@@ -738,14 +736,14 @@ var ZlibBase = class extends Minipass {
|
|
|
738
736
|
#level;
|
|
739
737
|
#strategy;
|
|
740
738
|
constructor(e, t) {
|
|
741
|
-
e ||= {}, e.flush = e.flush || constants$
|
|
739
|
+
e ||= {}, e.flush = e.flush || constants$2.Z_NO_FLUSH, e.finishFlush = e.finishFlush || constants$2.Z_FINISH, e.fullFlushFlag = constants$2.Z_FULL_FLUSH, super(e, t), this.#level = e.level, this.#strategy = e.strategy;
|
|
742
740
|
}
|
|
743
741
|
params(e, n) {
|
|
744
742
|
if (!this.sawError) {
|
|
745
743
|
if (!this.handle) throw Error(`cannot switch params when binding is closed`);
|
|
746
744
|
if (!this.handle.params) throw Error(`not supported in this implementation`);
|
|
747
745
|
if (this.#level !== e || this.#strategy !== n) {
|
|
748
|
-
this.flush(constants$
|
|
746
|
+
this.flush(constants$2.Z_SYNC_FLUSH), assert(this.handle, `zlib binding closed`);
|
|
749
747
|
let r = this.handle.flush;
|
|
750
748
|
this.handle.flush = (e, t) => {
|
|
751
749
|
typeof e == `function` && (t = e, e = this.flushFlag), this.flush(e), t?.();
|
|
@@ -773,7 +771,7 @@ var ZlibBase = class extends Minipass {
|
|
|
773
771
|
}
|
|
774
772
|
}, Brotli = class extends ZlibBase {
|
|
775
773
|
constructor(e, t) {
|
|
776
|
-
e ||= {}, e.flush = e.flush || constants$
|
|
774
|
+
e ||= {}, e.flush = e.flush || constants$2.BROTLI_OPERATION_PROCESS, e.finishFlush = e.finishFlush || constants$2.BROTLI_OPERATION_FINISH, e.fullFlushFlag = constants$2.BROTLI_OPERATION_FLUSH, super(e, t);
|
|
777
775
|
}
|
|
778
776
|
}, BrotliCompress = class extends Brotli {
|
|
779
777
|
constructor(e) {
|
|
@@ -785,7 +783,7 @@ var ZlibBase = class extends Minipass {
|
|
|
785
783
|
}
|
|
786
784
|
}, Zstd = class extends ZlibBase {
|
|
787
785
|
constructor(e, t) {
|
|
788
|
-
e ||= {}, e.flush = e.flush || constants$
|
|
786
|
+
e ||= {}, e.flush = e.flush || constants$2.ZSTD_e_continue, e.finishFlush = e.finishFlush || constants$2.ZSTD_e_end, e.fullFlushFlag = constants$2.ZSTD_e_flush, super(e, t);
|
|
789
787
|
}
|
|
790
788
|
}, ZstdCompress = class extends Zstd {
|
|
791
789
|
constructor(e) {
|
|
@@ -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([
|
|
@@ -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": "create-vuetify0",
|
|
3
|
-
"version": "1.1
|
|
3
|
+
"version": "1.2.0-beta.1",
|
|
4
4
|
"description": "Create a new Vuetify project",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
@@ -28,15 +28,15 @@
|
|
|
28
28
|
"directory": "packages/create0"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
|
-
"@bomb.sh/tab": "^0.0.
|
|
32
|
-
"@clack/prompts": "^1.
|
|
33
|
-
"citty": "^0.2.
|
|
31
|
+
"@bomb.sh/tab": "^0.0.14",
|
|
32
|
+
"@clack/prompts": "^1.1.0",
|
|
33
|
+
"citty": "^0.2.1",
|
|
34
34
|
"giget": "^3.1.2",
|
|
35
35
|
"kolorist": "^1.8.0",
|
|
36
36
|
"nypm": "^0.6.5",
|
|
37
37
|
"pathe": "^2.0.3",
|
|
38
|
-
"tsdown": "^0.
|
|
39
|
-
"@vuetify/cli-shared": "1.1
|
|
38
|
+
"tsdown": "^0.21.3",
|
|
39
|
+
"@vuetify/cli-shared": "1.2.0-beta.1"
|
|
40
40
|
},
|
|
41
41
|
"exports": {
|
|
42
42
|
".": "./dist/index.mjs",
|
|
@@ -46,9 +46,112 @@
|
|
|
46
46
|
"magicast": "^0.5.2",
|
|
47
47
|
"package-manager-detector": "^1.6.0",
|
|
48
48
|
"pkg-types": "^2.3.0",
|
|
49
|
-
"tinyexec": "^1.0.
|
|
49
|
+
"tinyexec": "^1.0.4",
|
|
50
50
|
"validate-npm-package-name": "^7.0.2"
|
|
51
51
|
},
|
|
52
|
+
"inlinedDependencies": {
|
|
53
|
+
"@bomb.sh/tab": "0.0.14",
|
|
54
|
+
"@clack/core": "1.1.0",
|
|
55
|
+
"@clack/prompts": "1.1.0",
|
|
56
|
+
"@eslint-community/eslint-utils": "4.9.1",
|
|
57
|
+
"@eslint-community/regexpp": "4.12.2",
|
|
58
|
+
"@eslint/config-array": "0.21.2",
|
|
59
|
+
"@eslint/eslintrc": "3.3.5",
|
|
60
|
+
"@eslint/js": "9.39.4",
|
|
61
|
+
"@eslint/object-schema": "2.1.7",
|
|
62
|
+
"@eslint/plugin-kit": "0.4.1",
|
|
63
|
+
"@humanfs/core": "0.19.1",
|
|
64
|
+
"@humanfs/node": "0.16.7",
|
|
65
|
+
"@humanwhocodes/retry": "0.4.3",
|
|
66
|
+
"@sindresorhus/slugify": "3.0.0",
|
|
67
|
+
"@sindresorhus/transliterate": "2.3.1",
|
|
68
|
+
"acorn": "8.15.0",
|
|
69
|
+
"acorn-jsx": "5.3.2",
|
|
70
|
+
"ajv": "6.14.0",
|
|
71
|
+
"balanced-match": "1.0.2",
|
|
72
|
+
"bignumber.js": "9.3.1",
|
|
73
|
+
"brace-expansion": "1.1.12",
|
|
74
|
+
"bundle-name": "4.1.0",
|
|
75
|
+
"callsites": "3.1.0",
|
|
76
|
+
"citty": "0.2.1",
|
|
77
|
+
"concat-map": "0.0.1",
|
|
78
|
+
"debug": "4.4.3",
|
|
79
|
+
"default-browser": "5.4.0",
|
|
80
|
+
"default-browser-id": "5.0.0",
|
|
81
|
+
"define-lazy-prop": "3.0.0",
|
|
82
|
+
"escape-string-regexp": [
|
|
83
|
+
"4.0.0",
|
|
84
|
+
"5.0.0"
|
|
85
|
+
],
|
|
86
|
+
"eslint": "9.39.4",
|
|
87
|
+
"eslint-scope": "8.4.0",
|
|
88
|
+
"eslint-visitor-keys": [
|
|
89
|
+
"3.4.3",
|
|
90
|
+
"4.2.1"
|
|
91
|
+
],
|
|
92
|
+
"espree": "10.4.0",
|
|
93
|
+
"esquery": "1.7.0",
|
|
94
|
+
"esrecurse": "4.3.0",
|
|
95
|
+
"estraverse": "5.3.0",
|
|
96
|
+
"esutils": "2.0.3",
|
|
97
|
+
"exsolve": "1.0.8",
|
|
98
|
+
"fast-deep-equal": "3.1.3",
|
|
99
|
+
"fast-json-stable-stringify": "2.1.0",
|
|
100
|
+
"file-entry-cache": "8.0.0",
|
|
101
|
+
"find-up": "5.0.0",
|
|
102
|
+
"flat-cache": "4.0.1",
|
|
103
|
+
"flatted": "3.3.3",
|
|
104
|
+
"giget": "3.1.2",
|
|
105
|
+
"glob-parent": "6.0.2",
|
|
106
|
+
"globals": "14.0.0",
|
|
107
|
+
"has-flag": "4.0.0",
|
|
108
|
+
"i18n-js": "4.5.3",
|
|
109
|
+
"ignore": "5.3.2",
|
|
110
|
+
"import-fresh": "3.3.1",
|
|
111
|
+
"imurmurhash": "0.1.4",
|
|
112
|
+
"is-docker": "3.0.0",
|
|
113
|
+
"is-extglob": "2.1.1",
|
|
114
|
+
"is-glob": "4.0.3",
|
|
115
|
+
"is-in-ssh": "1.0.0",
|
|
116
|
+
"is-inside-container": "1.0.0",
|
|
117
|
+
"is-interactive": "2.0.0",
|
|
118
|
+
"is-wsl": "3.1.0",
|
|
119
|
+
"jiti": "2.6.1",
|
|
120
|
+
"json-buffer": "3.0.1",
|
|
121
|
+
"json-schema-traverse": "0.4.1",
|
|
122
|
+
"json-stable-stringify-without-jsonify": "1.0.1",
|
|
123
|
+
"keyv": "4.5.4",
|
|
124
|
+
"kolorist": "1.8.0",
|
|
125
|
+
"levn": "0.4.1",
|
|
126
|
+
"locate-path": "6.0.0",
|
|
127
|
+
"lodash": "4.17.21",
|
|
128
|
+
"lodash.merge": "4.6.2",
|
|
129
|
+
"make-plural": "7.5.0",
|
|
130
|
+
"minimatch": "3.1.5",
|
|
131
|
+
"ms": "2.1.3",
|
|
132
|
+
"natural-compare": "1.4.0",
|
|
133
|
+
"nypm": "0.6.5",
|
|
134
|
+
"open": "11.0.0",
|
|
135
|
+
"p-limit": "3.1.0",
|
|
136
|
+
"p-locate": "5.0.0",
|
|
137
|
+
"parent-module": "1.0.1",
|
|
138
|
+
"path-exists": "4.0.0",
|
|
139
|
+
"pathe": "2.0.3",
|
|
140
|
+
"powershell-utils": "0.1.0",
|
|
141
|
+
"prelude-ls": "1.2.1",
|
|
142
|
+
"resolve-from": "4.0.0",
|
|
143
|
+
"run-applescript": "7.1.0",
|
|
144
|
+
"semver": "7.7.4",
|
|
145
|
+
"sisteransi": "1.0.5",
|
|
146
|
+
"smol-toml": "1.6.0",
|
|
147
|
+
"strip-json-comments": "3.1.1",
|
|
148
|
+
"supports-color": "7.2.0",
|
|
149
|
+
"type-check": "0.4.0",
|
|
150
|
+
"uri-js": "4.4.1",
|
|
151
|
+
"vue-eslint-parser": "10.4.0",
|
|
152
|
+
"wsl-utils": "0.3.0",
|
|
153
|
+
"yocto-queue": "0.1.0"
|
|
154
|
+
},
|
|
52
155
|
"scripts": {
|
|
53
156
|
"build": "tsdown"
|
|
54
157
|
}
|
package/dist/nypm-5VB5YsHQ.mjs
DELETED