@yamada-ui/cli 1.2.3 → 1.2.4
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/command/index.js +9 -9
- package/dist/command/theme/index.js +9 -9
- package/dist/command/tokens/create-theme-typings.js +2 -2
- package/dist/command/tokens/index.js +9 -9
- package/dist/index.js +176 -151
- package/dist/utils/cli.js +173 -148
- package/dist/utils/index.js +173 -148
- package/package.json +10 -10
package/dist/command/index.js
CHANGED
|
@@ -30,9 +30,9 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
|
|
|
30
30
|
));
|
|
31
31
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
32
32
|
|
|
33
|
-
// ../../node_modules/.pnpm/tsup@8.3.
|
|
33
|
+
// ../../node_modules/.pnpm/tsup@8.3.6_@swc+core@1.10.18_jiti@2.4.2_tsx@4.19.3_typescript@5.7.3/node_modules/tsup/assets/cjs_shims.js
|
|
34
34
|
var init_cjs_shims = __esm({
|
|
35
|
-
"../../node_modules/.pnpm/tsup@8.3.
|
|
35
|
+
"../../node_modules/.pnpm/tsup@8.3.6_@swc+core@1.10.18_jiti@2.4.2_tsx@4.19.3_typescript@5.7.3/node_modules/tsup/assets/cjs_shims.js"() {
|
|
36
36
|
"use strict";
|
|
37
37
|
}
|
|
38
38
|
});
|
|
@@ -51,10 +51,10 @@ init_cjs_shims();
|
|
|
51
51
|
init_cjs_shims();
|
|
52
52
|
var p = __toESM(require("@clack/prompts"));
|
|
53
53
|
|
|
54
|
-
// ../../node_modules/.pnpm/chalk@5.
|
|
54
|
+
// ../../node_modules/.pnpm/chalk@5.4.1/node_modules/chalk/source/index.js
|
|
55
55
|
init_cjs_shims();
|
|
56
56
|
|
|
57
|
-
// ../../node_modules/.pnpm/chalk@5.
|
|
57
|
+
// ../../node_modules/.pnpm/chalk@5.4.1/node_modules/chalk/source/vendor/ansi-styles/index.js
|
|
58
58
|
init_cjs_shims();
|
|
59
59
|
var ANSI_BACKGROUND_OFFSET = 10;
|
|
60
60
|
var wrapAnsi16 = (offset = 0) => (code) => `\x1B[${code + offset}m`;
|
|
@@ -241,7 +241,7 @@ function assembleStyles() {
|
|
|
241
241
|
var ansiStyles = assembleStyles();
|
|
242
242
|
var ansi_styles_default = ansiStyles;
|
|
243
243
|
|
|
244
|
-
// ../../node_modules/.pnpm/chalk@5.
|
|
244
|
+
// ../../node_modules/.pnpm/chalk@5.4.1/node_modules/chalk/source/vendor/supports-color/index.js
|
|
245
245
|
init_cjs_shims();
|
|
246
246
|
var import_node_process = __toESM(require("process"), 1);
|
|
247
247
|
var import_node_os = __toESM(require("os"), 1);
|
|
@@ -316,10 +316,10 @@ function _supportsColor(haveStream, { streamIsTTY, sniffFlags = true } = {}) {
|
|
|
316
316
|
return 1;
|
|
317
317
|
}
|
|
318
318
|
if ("CI" in env) {
|
|
319
|
-
if ("GITHUB_ACTIONS"
|
|
319
|
+
if (["GITHUB_ACTIONS", "GITEA_ACTIONS", "CIRCLECI"].some((key) => key in env)) {
|
|
320
320
|
return 3;
|
|
321
321
|
}
|
|
322
|
-
if (["TRAVIS", "
|
|
322
|
+
if (["TRAVIS", "APPVEYOR", "GITLAB_CI", "BUILDKITE", "DRONE"].some((sign) => sign in env) || env.CI_NAME === "codeship") {
|
|
323
323
|
return 1;
|
|
324
324
|
}
|
|
325
325
|
return min;
|
|
@@ -368,7 +368,7 @@ var supportsColor = {
|
|
|
368
368
|
};
|
|
369
369
|
var supports_color_default = supportsColor;
|
|
370
370
|
|
|
371
|
-
// ../../node_modules/.pnpm/chalk@5.
|
|
371
|
+
// ../../node_modules/.pnpm/chalk@5.4.1/node_modules/chalk/source/utilities.js
|
|
372
372
|
init_cjs_shims();
|
|
373
373
|
function stringReplaceAll(string, substring, replacer) {
|
|
374
374
|
let index = string.indexOf(substring);
|
|
@@ -399,7 +399,7 @@ function stringEncaseCRLFWithFirstIndex(string, prefix, postfix, index) {
|
|
|
399
399
|
return returnValue;
|
|
400
400
|
}
|
|
401
401
|
|
|
402
|
-
// ../../node_modules/.pnpm/chalk@5.
|
|
402
|
+
// ../../node_modules/.pnpm/chalk@5.4.1/node_modules/chalk/source/index.js
|
|
403
403
|
var { stdout: stdoutColor, stderr: stderrColor } = supports_color_default;
|
|
404
404
|
var GENERATOR = Symbol("GENERATOR");
|
|
405
405
|
var STYLER = Symbol("STYLER");
|
|
@@ -30,9 +30,9 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
|
|
|
30
30
|
));
|
|
31
31
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
32
32
|
|
|
33
|
-
// ../../node_modules/.pnpm/tsup@8.3.
|
|
33
|
+
// ../../node_modules/.pnpm/tsup@8.3.6_@swc+core@1.10.18_jiti@2.4.2_tsx@4.19.3_typescript@5.7.3/node_modules/tsup/assets/cjs_shims.js
|
|
34
34
|
var init_cjs_shims = __esm({
|
|
35
|
-
"../../node_modules/.pnpm/tsup@8.3.
|
|
35
|
+
"../../node_modules/.pnpm/tsup@8.3.6_@swc+core@1.10.18_jiti@2.4.2_tsx@4.19.3_typescript@5.7.3/node_modules/tsup/assets/cjs_shims.js"() {
|
|
36
36
|
"use strict";
|
|
37
37
|
}
|
|
38
38
|
});
|
|
@@ -46,10 +46,10 @@ module.exports = __toCommonJS(theme_exports);
|
|
|
46
46
|
init_cjs_shims();
|
|
47
47
|
var p = __toESM(require("@clack/prompts"));
|
|
48
48
|
|
|
49
|
-
// ../../node_modules/.pnpm/chalk@5.
|
|
49
|
+
// ../../node_modules/.pnpm/chalk@5.4.1/node_modules/chalk/source/index.js
|
|
50
50
|
init_cjs_shims();
|
|
51
51
|
|
|
52
|
-
// ../../node_modules/.pnpm/chalk@5.
|
|
52
|
+
// ../../node_modules/.pnpm/chalk@5.4.1/node_modules/chalk/source/vendor/ansi-styles/index.js
|
|
53
53
|
init_cjs_shims();
|
|
54
54
|
var ANSI_BACKGROUND_OFFSET = 10;
|
|
55
55
|
var wrapAnsi16 = (offset = 0) => (code) => `\x1B[${code + offset}m`;
|
|
@@ -236,7 +236,7 @@ function assembleStyles() {
|
|
|
236
236
|
var ansiStyles = assembleStyles();
|
|
237
237
|
var ansi_styles_default = ansiStyles;
|
|
238
238
|
|
|
239
|
-
// ../../node_modules/.pnpm/chalk@5.
|
|
239
|
+
// ../../node_modules/.pnpm/chalk@5.4.1/node_modules/chalk/source/vendor/supports-color/index.js
|
|
240
240
|
init_cjs_shims();
|
|
241
241
|
var import_node_process = __toESM(require("process"), 1);
|
|
242
242
|
var import_node_os = __toESM(require("os"), 1);
|
|
@@ -311,10 +311,10 @@ function _supportsColor(haveStream, { streamIsTTY, sniffFlags = true } = {}) {
|
|
|
311
311
|
return 1;
|
|
312
312
|
}
|
|
313
313
|
if ("CI" in env) {
|
|
314
|
-
if ("GITHUB_ACTIONS"
|
|
314
|
+
if (["GITHUB_ACTIONS", "GITEA_ACTIONS", "CIRCLECI"].some((key) => key in env)) {
|
|
315
315
|
return 3;
|
|
316
316
|
}
|
|
317
|
-
if (["TRAVIS", "
|
|
317
|
+
if (["TRAVIS", "APPVEYOR", "GITLAB_CI", "BUILDKITE", "DRONE"].some((sign) => sign in env) || env.CI_NAME === "codeship") {
|
|
318
318
|
return 1;
|
|
319
319
|
}
|
|
320
320
|
return min;
|
|
@@ -363,7 +363,7 @@ var supportsColor = {
|
|
|
363
363
|
};
|
|
364
364
|
var supports_color_default = supportsColor;
|
|
365
365
|
|
|
366
|
-
// ../../node_modules/.pnpm/chalk@5.
|
|
366
|
+
// ../../node_modules/.pnpm/chalk@5.4.1/node_modules/chalk/source/utilities.js
|
|
367
367
|
init_cjs_shims();
|
|
368
368
|
function stringReplaceAll(string, substring, replacer) {
|
|
369
369
|
let index = string.indexOf(substring);
|
|
@@ -394,7 +394,7 @@ function stringEncaseCRLFWithFirstIndex(string, prefix, postfix, index) {
|
|
|
394
394
|
return returnValue;
|
|
395
395
|
}
|
|
396
396
|
|
|
397
|
-
// ../../node_modules/.pnpm/chalk@5.
|
|
397
|
+
// ../../node_modules/.pnpm/chalk@5.4.1/node_modules/chalk/source/index.js
|
|
398
398
|
var { stdout: stdoutColor, stderr: stderrColor } = supports_color_default;
|
|
399
399
|
var GENERATOR = Symbol("GENERATOR");
|
|
400
400
|
var STYLER = Symbol("STYLER");
|
|
@@ -30,9 +30,9 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
|
|
|
30
30
|
));
|
|
31
31
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
32
32
|
|
|
33
|
-
// ../../node_modules/.pnpm/tsup@8.3.
|
|
33
|
+
// ../../node_modules/.pnpm/tsup@8.3.6_@swc+core@1.10.18_jiti@2.4.2_tsx@4.19.3_typescript@5.7.3/node_modules/tsup/assets/cjs_shims.js
|
|
34
34
|
var init_cjs_shims = __esm({
|
|
35
|
-
"../../node_modules/.pnpm/tsup@8.3.
|
|
35
|
+
"../../node_modules/.pnpm/tsup@8.3.6_@swc+core@1.10.18_jiti@2.4.2_tsx@4.19.3_typescript@5.7.3/node_modules/tsup/assets/cjs_shims.js"() {
|
|
36
36
|
"use strict";
|
|
37
37
|
}
|
|
38
38
|
});
|
|
@@ -30,9 +30,9 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
|
|
|
30
30
|
));
|
|
31
31
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
32
32
|
|
|
33
|
-
// ../../node_modules/.pnpm/tsup@8.3.
|
|
33
|
+
// ../../node_modules/.pnpm/tsup@8.3.6_@swc+core@1.10.18_jiti@2.4.2_tsx@4.19.3_typescript@5.7.3/node_modules/tsup/assets/cjs_shims.js
|
|
34
34
|
var init_cjs_shims = __esm({
|
|
35
|
-
"../../node_modules/.pnpm/tsup@8.3.
|
|
35
|
+
"../../node_modules/.pnpm/tsup@8.3.6_@swc+core@1.10.18_jiti@2.4.2_tsx@4.19.3_typescript@5.7.3/node_modules/tsup/assets/cjs_shims.js"() {
|
|
36
36
|
"use strict";
|
|
37
37
|
}
|
|
38
38
|
});
|
|
@@ -47,10 +47,10 @@ module.exports = __toCommonJS(tokens_exports);
|
|
|
47
47
|
init_cjs_shims();
|
|
48
48
|
var p = __toESM(require("@clack/prompts"));
|
|
49
49
|
|
|
50
|
-
// ../../node_modules/.pnpm/chalk@5.
|
|
50
|
+
// ../../node_modules/.pnpm/chalk@5.4.1/node_modules/chalk/source/index.js
|
|
51
51
|
init_cjs_shims();
|
|
52
52
|
|
|
53
|
-
// ../../node_modules/.pnpm/chalk@5.
|
|
53
|
+
// ../../node_modules/.pnpm/chalk@5.4.1/node_modules/chalk/source/vendor/ansi-styles/index.js
|
|
54
54
|
init_cjs_shims();
|
|
55
55
|
var ANSI_BACKGROUND_OFFSET = 10;
|
|
56
56
|
var wrapAnsi16 = (offset = 0) => (code) => `\x1B[${code + offset}m`;
|
|
@@ -237,7 +237,7 @@ function assembleStyles() {
|
|
|
237
237
|
var ansiStyles = assembleStyles();
|
|
238
238
|
var ansi_styles_default = ansiStyles;
|
|
239
239
|
|
|
240
|
-
// ../../node_modules/.pnpm/chalk@5.
|
|
240
|
+
// ../../node_modules/.pnpm/chalk@5.4.1/node_modules/chalk/source/vendor/supports-color/index.js
|
|
241
241
|
init_cjs_shims();
|
|
242
242
|
var import_node_process = __toESM(require("process"), 1);
|
|
243
243
|
var import_node_os = __toESM(require("os"), 1);
|
|
@@ -312,10 +312,10 @@ function _supportsColor(haveStream, { streamIsTTY, sniffFlags = true } = {}) {
|
|
|
312
312
|
return 1;
|
|
313
313
|
}
|
|
314
314
|
if ("CI" in env) {
|
|
315
|
-
if ("GITHUB_ACTIONS"
|
|
315
|
+
if (["GITHUB_ACTIONS", "GITEA_ACTIONS", "CIRCLECI"].some((key) => key in env)) {
|
|
316
316
|
return 3;
|
|
317
317
|
}
|
|
318
|
-
if (["TRAVIS", "
|
|
318
|
+
if (["TRAVIS", "APPVEYOR", "GITLAB_CI", "BUILDKITE", "DRONE"].some((sign) => sign in env) || env.CI_NAME === "codeship") {
|
|
319
319
|
return 1;
|
|
320
320
|
}
|
|
321
321
|
return min;
|
|
@@ -364,7 +364,7 @@ var supportsColor = {
|
|
|
364
364
|
};
|
|
365
365
|
var supports_color_default = supportsColor;
|
|
366
366
|
|
|
367
|
-
// ../../node_modules/.pnpm/chalk@5.
|
|
367
|
+
// ../../node_modules/.pnpm/chalk@5.4.1/node_modules/chalk/source/utilities.js
|
|
368
368
|
init_cjs_shims();
|
|
369
369
|
function stringReplaceAll(string, substring, replacer) {
|
|
370
370
|
let index = string.indexOf(substring);
|
|
@@ -395,7 +395,7 @@ function stringEncaseCRLFWithFirstIndex(string, prefix, postfix, index) {
|
|
|
395
395
|
return returnValue;
|
|
396
396
|
}
|
|
397
397
|
|
|
398
|
-
// ../../node_modules/.pnpm/chalk@5.
|
|
398
|
+
// ../../node_modules/.pnpm/chalk@5.4.1/node_modules/chalk/source/index.js
|
|
399
399
|
var { stdout: stdoutColor, stderr: stderrColor } = supports_color_default;
|
|
400
400
|
var GENERATOR = Symbol("GENERATOR");
|
|
401
401
|
var STYLER = Symbol("STYLER");
|