vite-plus 0.1.21 → 0.1.23
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/AGENTS.md +1 -0
- package/binding/index.cjs +120 -52
- package/binding/index.d.cts +3232 -2
- package/dist/agent-aSGY0osq.js +2461 -0
- package/dist/bin.js +9 -14
- package/dist/cli-truncate-CWsmbK3p.js +867 -0
- package/dist/{compat-DdC7fHjB.js → compat-DXZgnEyq.js} +1 -1
- package/dist/config/bin.js +18 -5
- package/dist/constants-DCBWlNrn.js +33 -0
- package/dist/create/bin.js +215 -77
- package/dist/{define-config-cWg3Z2bC.d.ts → define-config-COdn-tsn.d.ts} +7 -5
- package/dist/define-config.cjs +1 -1
- package/dist/define-config.d.ts +1 -1
- package/dist/define-config.js +1 -1
- package/dist/dist-Bapm49IR.js +3 -0
- package/dist/{dist-DjG9AYbK.js → dist-BgQuvbtq.js} +136 -110
- package/dist/fmt.d.ts +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/is-fullwidth-code-point-BUNlIICg.js +8 -0
- package/dist/lint.d.ts +1 -1
- package/dist/{log-update-CLxR0iRf.js → log-update-lyIiuflf.js} +111 -24
- package/dist/{main-A6UrSTYb.js → main-DpJl3LoU.js} +1 -28
- package/dist/migration/bin.js +71 -30
- package/dist/oxlint-plugin-config-B89iKTKN.js +37 -0
- package/dist/oxlint-plugin.d.ts +6 -0
- package/dist/oxlint-plugin.js +91 -0
- package/dist/pack-bin.js +1 -1
- package/dist/pack.d.ts +1 -1
- package/dist/{package-CrKanQYM.js → package-PmBUZ-ve.js} +2 -1
- package/dist/staged/bin.js +10 -10
- package/dist/strip-ansi-C3wrWz9t.js +853 -0
- package/dist/{agent-D2ocSU01.js → tsconfig-DlUVXT3J.js} +666 -2090
- package/dist/version.js +5 -5
- package/dist/versions.js +6 -6
- package/dist/{workspace-QXeJWs3P.js → workspace-DElv730L.js} +15 -15
- package/dist/wrap-ansi-CeQuiQ31.js +2 -0
- package/dist/{wrap-ansi-Dy0LjO7Q.js → wrap-ansi-k7Dn4VtV.js} +1 -1
- package/docs/config/run.md +39 -4
- package/docs/guide/cache.md +10 -1
- package/docs/guide/create.md +3 -1
- package/docs/guide/env.md +26 -1
- package/docs/guide/ide-integration.md +2 -2
- package/docs/guide/install.md +6 -0
- package/docs/guide/run.md +2 -0
- package/docs/guide/troubleshooting.md +5 -2
- package/docs/package.json +3 -1
- package/docs/pnpm-lock.yaml +798 -62
- package/package.json +27 -19
- package/templates/monorepo/_gitignore +1 -0
- package/dist/cli-truncate-DJcN4dJ8.js +0 -138
- package/dist/dist-D2_BiE1V.js +0 -3
- package/dist/slice-ansi-CwJYd1aw.js +0 -113
- package/dist/strip-ansi-D86nYqKl.js +0 -198
- package/dist/tsconfig-lBAWm4sf.js +0 -517
- package/dist/wrap-ansi-DbY7Idw_.js +0 -2
- /package/dist/{chunk-q7NCDQ7-.js → chunk-DnnnRqeS.js} +0 -0
- /package/dist/{define-config-GqLoRwH9.cjs → define-config-BR1Y88zz.cjs} +0 -0
- /package/dist/{define-config-B62DkkqH.js → define-config-BRC7qPNE.js} +0 -0
- /package/dist/{help-BtkjXtRM.js → help-YP84FSEz.js} +0 -0
- /package/dist/{lib-BamM40b7.js → lib-L3DWSRQp.js} +0 -0
- /package/dist/{pack-BcBvbQgt.d.ts → pack-Ciiho0Tq.d.ts} +0 -0
- /package/dist/{report-DbrfjWiP.js → report-DgSBQUdz.js} +0 -0
- /package/dist/{resolve-vite-config-C1KX9CZU.js → resolve-vite-config-TTvhycU1.js} +0 -0
- /package/dist/{terminal-CxTMfsxZ.js → terminal-uTv0ZaMr.js} +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vite-plus",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.23",
|
|
4
4
|
"description": "The Unified Toolchain for the Web",
|
|
5
5
|
"homepage": "https://viteplus.dev/guide",
|
|
6
6
|
"bugs": {
|
|
@@ -74,6 +74,13 @@
|
|
|
74
74
|
"types": "./dist/lint.d.ts",
|
|
75
75
|
"import": "./dist/lint.js"
|
|
76
76
|
},
|
|
77
|
+
"./oxlint-plugin": {
|
|
78
|
+
"module-sync": "./dist/oxlint-plugin.js",
|
|
79
|
+
"node": "./dist/oxlint-plugin.js",
|
|
80
|
+
"import": "./dist/oxlint-plugin.js",
|
|
81
|
+
"default": "./dist/oxlint-plugin.js",
|
|
82
|
+
"types": "./dist/oxlint-plugin.d.ts"
|
|
83
|
+
},
|
|
77
84
|
"./package.json": "./package.json",
|
|
78
85
|
"./pack": {
|
|
79
86
|
"types": "./dist/pack.d.ts",
|
|
@@ -321,12 +328,13 @@
|
|
|
321
328
|
}
|
|
322
329
|
},
|
|
323
330
|
"dependencies": {
|
|
324
|
-
"@oxc-project/types": "=0.
|
|
325
|
-
"
|
|
326
|
-
"
|
|
327
|
-
"oxlint
|
|
328
|
-
"
|
|
329
|
-
"@voidzero-dev/vite-plus-
|
|
331
|
+
"@oxc-project/types": "=0.133.0",
|
|
332
|
+
"@oxlint/plugins": "=1.61.0",
|
|
333
|
+
"oxfmt": "=0.52.0",
|
|
334
|
+
"oxlint": "=1.67.0",
|
|
335
|
+
"oxlint-tsgolint": "=0.23.0",
|
|
336
|
+
"@voidzero-dev/vite-plus-test": "0.1.23",
|
|
337
|
+
"@voidzero-dev/vite-plus-core": "0.1.23"
|
|
330
338
|
},
|
|
331
339
|
"devDependencies": {
|
|
332
340
|
"@napi-rs/cli": "^3.6.1",
|
|
@@ -346,14 +354,14 @@
|
|
|
346
354
|
"mri": "^1.2.0",
|
|
347
355
|
"nanotar": "^0.3.0",
|
|
348
356
|
"picocolors": "^1.1.1",
|
|
349
|
-
"rolldown-plugin-dts": "^0.
|
|
350
|
-
"semver": "^7.
|
|
357
|
+
"rolldown-plugin-dts": "^0.25.1",
|
|
358
|
+
"semver": "^7.8.0",
|
|
351
359
|
"tsdown": "^0.22.0",
|
|
352
360
|
"validate-npm-package-name": "^7.0.2",
|
|
353
361
|
"yaml": "^2.8.1",
|
|
354
362
|
"@voidzero-dev/vite-plus-prompts": "0.0.0",
|
|
355
|
-
"
|
|
356
|
-
"
|
|
363
|
+
"vite": "npm:@voidzero-dev/vite-plus-core@0.1.23",
|
|
364
|
+
"@voidzero-dev/vite-plus-tools": "0.0.0"
|
|
357
365
|
},
|
|
358
366
|
"napi": {
|
|
359
367
|
"binaryName": "vite-plus",
|
|
@@ -373,14 +381,14 @@
|
|
|
373
381
|
"node": "^20.19.0 || >=22.12.0"
|
|
374
382
|
},
|
|
375
383
|
"optionalDependencies": {
|
|
376
|
-
"@voidzero-dev/vite-plus-darwin-arm64": "0.1.
|
|
377
|
-
"@voidzero-dev/vite-plus-darwin-x64": "0.1.
|
|
378
|
-
"@voidzero-dev/vite-plus-linux-arm64-gnu": "0.1.
|
|
379
|
-
"@voidzero-dev/vite-plus-linux-arm64-musl": "0.1.
|
|
380
|
-
"@voidzero-dev/vite-plus-linux-x64-gnu": "0.1.
|
|
381
|
-
"@voidzero-dev/vite-plus-linux-x64-musl": "0.1.
|
|
382
|
-
"@voidzero-dev/vite-plus-win32-x64-msvc": "0.1.
|
|
383
|
-
"@voidzero-dev/vite-plus-win32-arm64-msvc": "0.1.
|
|
384
|
+
"@voidzero-dev/vite-plus-darwin-arm64": "0.1.23",
|
|
385
|
+
"@voidzero-dev/vite-plus-darwin-x64": "0.1.23",
|
|
386
|
+
"@voidzero-dev/vite-plus-linux-arm64-gnu": "0.1.23",
|
|
387
|
+
"@voidzero-dev/vite-plus-linux-arm64-musl": "0.1.23",
|
|
388
|
+
"@voidzero-dev/vite-plus-linux-x64-gnu": "0.1.23",
|
|
389
|
+
"@voidzero-dev/vite-plus-linux-x64-musl": "0.1.23",
|
|
390
|
+
"@voidzero-dev/vite-plus-win32-x64-msvc": "0.1.23",
|
|
391
|
+
"@voidzero-dev/vite-plus-win32-arm64-msvc": "0.1.23"
|
|
384
392
|
},
|
|
385
393
|
"scripts": {
|
|
386
394
|
"build": "oxnode -C dev ./build.ts",
|
|
@@ -1,138 +0,0 @@
|
|
|
1
|
-
import { n as eastAsianWidth, t as stripAnsi } from "./strip-ansi-D86nYqKl.js";
|
|
2
|
-
import { t as sliceAnsi } from "./slice-ansi-CwJYd1aw.js";
|
|
3
|
-
//#region ../../node_modules/.pnpm/string-width@8.1.0/node_modules/string-width/index.js
|
|
4
|
-
/**
|
|
5
|
-
Logic:
|
|
6
|
-
- Segment graphemes to match how terminals render clusters.
|
|
7
|
-
- Width rules:
|
|
8
|
-
1. Skip non-printing clusters (Default_Ignorable, Control, pure Mark, lone Surrogates). Tabs are ignored by design.
|
|
9
|
-
2. RGI emoji clusters (\p{RGI_Emoji}) are double-width.
|
|
10
|
-
3. Otherwise use East Asian Width of the cluster’s first visible code point, and add widths for trailing Halfwidth/Fullwidth Forms within the same cluster (e.g., dakuten/handakuten/prolonged sound mark).
|
|
11
|
-
*/
|
|
12
|
-
const segmenter = new Intl.Segmenter();
|
|
13
|
-
const zeroWidthClusterRegex = /^(?:\p{Default_Ignorable_Code_Point}|\p{Control}|\p{Mark}|\p{Surrogate})+$/v;
|
|
14
|
-
const leadingNonPrintingRegex = /^[\p{Default_Ignorable_Code_Point}\p{Control}\p{Format}\p{Mark}\p{Surrogate}]+/v;
|
|
15
|
-
const rgiEmojiRegex = /^\p{RGI_Emoji}$/v;
|
|
16
|
-
function baseVisible(segment) {
|
|
17
|
-
return segment.replace(leadingNonPrintingRegex, "");
|
|
18
|
-
}
|
|
19
|
-
function isZeroWidthCluster(segment) {
|
|
20
|
-
return zeroWidthClusterRegex.test(segment);
|
|
21
|
-
}
|
|
22
|
-
function trailingHalfwidthWidth(segment, eastAsianWidthOptions) {
|
|
23
|
-
let extra = 0;
|
|
24
|
-
if (segment.length > 1) {
|
|
25
|
-
for (const char of segment.slice(1)) if (char >= "" && char <= "") extra += eastAsianWidth(char.codePointAt(0), eastAsianWidthOptions);
|
|
26
|
-
}
|
|
27
|
-
return extra;
|
|
28
|
-
}
|
|
29
|
-
function stringWidth(input, options = {}) {
|
|
30
|
-
if (typeof input !== "string" || input.length === 0) return 0;
|
|
31
|
-
const { ambiguousIsNarrow = true, countAnsiEscapeCodes = false } = options;
|
|
32
|
-
let string = input;
|
|
33
|
-
if (!countAnsiEscapeCodes) string = stripAnsi(string);
|
|
34
|
-
if (string.length === 0) return 0;
|
|
35
|
-
let width = 0;
|
|
36
|
-
const eastAsianWidthOptions = { ambiguousAsWide: !ambiguousIsNarrow };
|
|
37
|
-
for (const { segment } of segmenter.segment(string)) {
|
|
38
|
-
if (isZeroWidthCluster(segment)) continue;
|
|
39
|
-
if (rgiEmojiRegex.test(segment)) {
|
|
40
|
-
width += 2;
|
|
41
|
-
continue;
|
|
42
|
-
}
|
|
43
|
-
const codePoint = baseVisible(segment).codePointAt(0);
|
|
44
|
-
width += eastAsianWidth(codePoint, eastAsianWidthOptions);
|
|
45
|
-
width += trailingHalfwidthWidth(segment, eastAsianWidthOptions);
|
|
46
|
-
}
|
|
47
|
-
return width;
|
|
48
|
-
}
|
|
49
|
-
//#endregion
|
|
50
|
-
//#region ../../node_modules/.pnpm/cli-truncate@5.1.1/node_modules/cli-truncate/index.js
|
|
51
|
-
function getIndexOfNearestSpace(string, wantedIndex, shouldSearchRight) {
|
|
52
|
-
if (string.charAt(wantedIndex) === " ") return wantedIndex;
|
|
53
|
-
const direction = shouldSearchRight ? 1 : -1;
|
|
54
|
-
for (let index = 0; index <= 3; index++) {
|
|
55
|
-
const finalIndex = wantedIndex + index * direction;
|
|
56
|
-
if (string.charAt(finalIndex) === " ") return finalIndex;
|
|
57
|
-
}
|
|
58
|
-
return wantedIndex;
|
|
59
|
-
}
|
|
60
|
-
function cliTruncate(text, columns, options = {}) {
|
|
61
|
-
const { position = "end", space = false, preferTruncationOnSpace = false } = options;
|
|
62
|
-
let { truncationCharacter = "…" } = options;
|
|
63
|
-
if (typeof text !== "string") throw new TypeError(`Expected \`input\` to be a string, got ${typeof text}`);
|
|
64
|
-
if (typeof columns !== "number") throw new TypeError(`Expected \`columns\` to be a number, got ${typeof columns}`);
|
|
65
|
-
if (columns < 1) return "";
|
|
66
|
-
const length = stringWidth(text);
|
|
67
|
-
if (length <= columns) return text;
|
|
68
|
-
if (columns === 1) return truncationCharacter;
|
|
69
|
-
const ANSI = {
|
|
70
|
-
ESC: 27,
|
|
71
|
-
LEFT_BRACKET: 91,
|
|
72
|
-
LETTER_M: 109
|
|
73
|
-
};
|
|
74
|
-
const isSgrParameter = (code) => code >= 48 && code <= 57 || code === 59;
|
|
75
|
-
function leadingSgrSpanEndIndex(string) {
|
|
76
|
-
let index = 0;
|
|
77
|
-
while (index + 2 < string.length && string.codePointAt(index) === ANSI.ESC && string.codePointAt(index + 1) === ANSI.LEFT_BRACKET) {
|
|
78
|
-
let j = index + 2;
|
|
79
|
-
while (j < string.length && isSgrParameter(string.codePointAt(j))) j++;
|
|
80
|
-
if (j < string.length && string.codePointAt(j) === ANSI.LETTER_M) {
|
|
81
|
-
index = j + 1;
|
|
82
|
-
continue;
|
|
83
|
-
}
|
|
84
|
-
break;
|
|
85
|
-
}
|
|
86
|
-
return index;
|
|
87
|
-
}
|
|
88
|
-
function trailingSgrSpanStartIndex(string) {
|
|
89
|
-
let start = string.length;
|
|
90
|
-
while (start > 1 && string.codePointAt(start - 1) === ANSI.LETTER_M) {
|
|
91
|
-
let j = start - 2;
|
|
92
|
-
while (j >= 0 && isSgrParameter(string.codePointAt(j))) j--;
|
|
93
|
-
if (j >= 1 && string.codePointAt(j - 1) === ANSI.ESC && string.codePointAt(j) === ANSI.LEFT_BRACKET) {
|
|
94
|
-
start = j - 1;
|
|
95
|
-
continue;
|
|
96
|
-
}
|
|
97
|
-
break;
|
|
98
|
-
}
|
|
99
|
-
return start;
|
|
100
|
-
}
|
|
101
|
-
function appendWithInheritedStyleFromEnd(visible, suffix) {
|
|
102
|
-
const start = trailingSgrSpanStartIndex(visible);
|
|
103
|
-
if (start === visible.length) return visible + suffix;
|
|
104
|
-
return visible.slice(0, start) + suffix + visible.slice(start);
|
|
105
|
-
}
|
|
106
|
-
function prependWithInheritedStyleFromStart(prefix, visible) {
|
|
107
|
-
const end = leadingSgrSpanEndIndex(visible);
|
|
108
|
-
if (end === 0) return prefix + visible;
|
|
109
|
-
return visible.slice(0, end) + prefix + visible.slice(end);
|
|
110
|
-
}
|
|
111
|
-
if (position === "start") {
|
|
112
|
-
if (preferTruncationOnSpace) {
|
|
113
|
-
const right = sliceAnsi(text, getIndexOfNearestSpace(text, length - columns + 1, true), length).trim();
|
|
114
|
-
return prependWithInheritedStyleFromStart(truncationCharacter, right);
|
|
115
|
-
}
|
|
116
|
-
if (space) truncationCharacter += " ";
|
|
117
|
-
const right = sliceAnsi(text, length - columns + stringWidth(truncationCharacter), length);
|
|
118
|
-
return prependWithInheritedStyleFromStart(truncationCharacter, right);
|
|
119
|
-
}
|
|
120
|
-
if (position === "middle") {
|
|
121
|
-
if (space) truncationCharacter = ` ${truncationCharacter} `;
|
|
122
|
-
const half = Math.floor(columns / 2);
|
|
123
|
-
if (preferTruncationOnSpace) {
|
|
124
|
-
const spaceNearFirstBreakPoint = getIndexOfNearestSpace(text, half);
|
|
125
|
-
const spaceNearSecondBreakPoint = getIndexOfNearestSpace(text, length - (columns - half) + 1, true);
|
|
126
|
-
return sliceAnsi(text, 0, spaceNearFirstBreakPoint) + truncationCharacter + sliceAnsi(text, spaceNearSecondBreakPoint, length).trim();
|
|
127
|
-
}
|
|
128
|
-
return sliceAnsi(text, 0, half) + truncationCharacter + sliceAnsi(text, length - (columns - half) + stringWidth(truncationCharacter), length);
|
|
129
|
-
}
|
|
130
|
-
if (position === "end") {
|
|
131
|
-
if (preferTruncationOnSpace) return appendWithInheritedStyleFromEnd(sliceAnsi(text, 0, getIndexOfNearestSpace(text, columns - 1)), truncationCharacter);
|
|
132
|
-
if (space) truncationCharacter = ` ${truncationCharacter}`;
|
|
133
|
-
return appendWithInheritedStyleFromEnd(sliceAnsi(text, 0, columns - stringWidth(truncationCharacter)), truncationCharacter);
|
|
134
|
-
}
|
|
135
|
-
throw new Error(`Expected \`options.position\` to be either \`start\`, \`middle\` or \`end\`, got ${position}`);
|
|
136
|
-
}
|
|
137
|
-
//#endregion
|
|
138
|
-
export { cliTruncate as default };
|
package/dist/dist-D2_BiE1V.js
DELETED
|
@@ -1,113 +0,0 @@
|
|
|
1
|
-
import { a as ansiStyles, i as isWide, r as isFullWidth } from "./strip-ansi-D86nYqKl.js";
|
|
2
|
-
//#region ../../node_modules/.pnpm/is-fullwidth-code-point@5.1.0/node_modules/is-fullwidth-code-point/index.js
|
|
3
|
-
function isFullwidthCodePoint(codePoint) {
|
|
4
|
-
if (!Number.isInteger(codePoint)) return false;
|
|
5
|
-
return isFullWidth(codePoint) || isWide(codePoint);
|
|
6
|
-
}
|
|
7
|
-
//#endregion
|
|
8
|
-
//#region ../../node_modules/.pnpm/slice-ansi@7.1.2/node_modules/slice-ansi/index.js
|
|
9
|
-
const ESCAPES = new Set([27, 155]);
|
|
10
|
-
const CODE_POINT_0 = "0".codePointAt(0);
|
|
11
|
-
const CODE_POINT_9 = "9".codePointAt(0);
|
|
12
|
-
const MAX_ANSI_SEQUENCE_LENGTH = 19;
|
|
13
|
-
const endCodesSet = /* @__PURE__ */ new Set();
|
|
14
|
-
const endCodesMap = /* @__PURE__ */ new Map();
|
|
15
|
-
for (const [start, end] of ansiStyles.codes) {
|
|
16
|
-
endCodesSet.add(ansiStyles.color.ansi(end));
|
|
17
|
-
endCodesMap.set(ansiStyles.color.ansi(start), ansiStyles.color.ansi(end));
|
|
18
|
-
}
|
|
19
|
-
function getEndCode(code) {
|
|
20
|
-
if (endCodesSet.has(code)) return code;
|
|
21
|
-
if (endCodesMap.has(code)) return endCodesMap.get(code);
|
|
22
|
-
code = code.slice(2);
|
|
23
|
-
if (code.includes(";")) code = code[0] + "0";
|
|
24
|
-
const returnValue = ansiStyles.codes.get(Number.parseInt(code, 10));
|
|
25
|
-
if (returnValue) return ansiStyles.color.ansi(returnValue);
|
|
26
|
-
return ansiStyles.reset.open;
|
|
27
|
-
}
|
|
28
|
-
function findNumberIndex(string) {
|
|
29
|
-
for (let index = 0; index < string.length; index++) {
|
|
30
|
-
const codePoint = string.codePointAt(index);
|
|
31
|
-
if (codePoint >= CODE_POINT_0 && codePoint <= CODE_POINT_9) return index;
|
|
32
|
-
}
|
|
33
|
-
return -1;
|
|
34
|
-
}
|
|
35
|
-
function parseAnsiCode(string, offset) {
|
|
36
|
-
string = string.slice(offset, offset + MAX_ANSI_SEQUENCE_LENGTH);
|
|
37
|
-
const startIndex = findNumberIndex(string);
|
|
38
|
-
if (startIndex !== -1) {
|
|
39
|
-
let endIndex = string.indexOf("m", startIndex);
|
|
40
|
-
if (endIndex === -1) endIndex = string.length;
|
|
41
|
-
return string.slice(0, endIndex + 1);
|
|
42
|
-
}
|
|
43
|
-
}
|
|
44
|
-
function tokenize(string, endCharacter = Number.POSITIVE_INFINITY) {
|
|
45
|
-
const returnValue = [];
|
|
46
|
-
let index = 0;
|
|
47
|
-
let visibleCount = 0;
|
|
48
|
-
while (index < string.length) {
|
|
49
|
-
const codePoint = string.codePointAt(index);
|
|
50
|
-
if (ESCAPES.has(codePoint)) {
|
|
51
|
-
const code = parseAnsiCode(string, index);
|
|
52
|
-
if (code) {
|
|
53
|
-
returnValue.push({
|
|
54
|
-
type: "ansi",
|
|
55
|
-
code,
|
|
56
|
-
endCode: getEndCode(code)
|
|
57
|
-
});
|
|
58
|
-
index += code.length;
|
|
59
|
-
continue;
|
|
60
|
-
}
|
|
61
|
-
}
|
|
62
|
-
const isFullWidth = isFullwidthCodePoint(codePoint);
|
|
63
|
-
const character = String.fromCodePoint(codePoint);
|
|
64
|
-
returnValue.push({
|
|
65
|
-
type: "character",
|
|
66
|
-
value: character,
|
|
67
|
-
isFullWidth
|
|
68
|
-
});
|
|
69
|
-
index += character.length;
|
|
70
|
-
visibleCount += isFullWidth ? 2 : character.length;
|
|
71
|
-
if (visibleCount >= endCharacter) break;
|
|
72
|
-
}
|
|
73
|
-
return returnValue;
|
|
74
|
-
}
|
|
75
|
-
function reduceAnsiCodes(codes) {
|
|
76
|
-
let returnValue = [];
|
|
77
|
-
for (const code of codes) if (code.code === ansiStyles.reset.open) returnValue = [];
|
|
78
|
-
else if (endCodesSet.has(code.code)) returnValue = returnValue.filter((returnValueCode) => returnValueCode.endCode !== code.code);
|
|
79
|
-
else {
|
|
80
|
-
returnValue = returnValue.filter((returnValueCode) => returnValueCode.endCode !== code.endCode);
|
|
81
|
-
returnValue.push(code);
|
|
82
|
-
}
|
|
83
|
-
return returnValue;
|
|
84
|
-
}
|
|
85
|
-
function undoAnsiCodes(codes) {
|
|
86
|
-
return reduceAnsiCodes(codes).map(({ endCode }) => endCode).reverse().join("");
|
|
87
|
-
}
|
|
88
|
-
function sliceAnsi(string, start, end) {
|
|
89
|
-
const tokens = tokenize(string, end);
|
|
90
|
-
let activeCodes = [];
|
|
91
|
-
let position = 0;
|
|
92
|
-
let returnValue = "";
|
|
93
|
-
let include = false;
|
|
94
|
-
for (const token of tokens) {
|
|
95
|
-
if (end !== void 0 && position >= end) break;
|
|
96
|
-
if (token.type === "ansi") {
|
|
97
|
-
activeCodes.push(token);
|
|
98
|
-
if (include) returnValue += token.code;
|
|
99
|
-
} else {
|
|
100
|
-
if (!include && position >= start) {
|
|
101
|
-
include = true;
|
|
102
|
-
activeCodes = reduceAnsiCodes(activeCodes);
|
|
103
|
-
returnValue = activeCodes.map(({ code }) => code).join("");
|
|
104
|
-
}
|
|
105
|
-
if (include) returnValue += token.value;
|
|
106
|
-
position += token.isFullWidth ? 2 : token.value.length;
|
|
107
|
-
}
|
|
108
|
-
}
|
|
109
|
-
returnValue += undoAnsiCodes(activeCodes);
|
|
110
|
-
return returnValue;
|
|
111
|
-
}
|
|
112
|
-
//#endregion
|
|
113
|
-
export { sliceAnsi as t };
|
|
@@ -1,198 +0,0 @@
|
|
|
1
|
-
//#region ../../node_modules/.pnpm/ansi-styles@6.2.3/node_modules/ansi-styles/index.js
|
|
2
|
-
const ANSI_BACKGROUND_OFFSET = 10;
|
|
3
|
-
const wrapAnsi16 = (offset = 0) => (code) => `\u001B[${code + offset}m`;
|
|
4
|
-
const wrapAnsi256 = (offset = 0) => (code) => `\u001B[${38 + offset};5;${code}m`;
|
|
5
|
-
const wrapAnsi16m = (offset = 0) => (red, green, blue) => `\u001B[${38 + offset};2;${red};${green};${blue}m`;
|
|
6
|
-
const styles = {
|
|
7
|
-
modifier: {
|
|
8
|
-
reset: [0, 0],
|
|
9
|
-
bold: [1, 22],
|
|
10
|
-
dim: [2, 22],
|
|
11
|
-
italic: [3, 23],
|
|
12
|
-
underline: [4, 24],
|
|
13
|
-
overline: [53, 55],
|
|
14
|
-
inverse: [7, 27],
|
|
15
|
-
hidden: [8, 28],
|
|
16
|
-
strikethrough: [9, 29]
|
|
17
|
-
},
|
|
18
|
-
color: {
|
|
19
|
-
black: [30, 39],
|
|
20
|
-
red: [31, 39],
|
|
21
|
-
green: [32, 39],
|
|
22
|
-
yellow: [33, 39],
|
|
23
|
-
blue: [34, 39],
|
|
24
|
-
magenta: [35, 39],
|
|
25
|
-
cyan: [36, 39],
|
|
26
|
-
white: [37, 39],
|
|
27
|
-
blackBright: [90, 39],
|
|
28
|
-
gray: [90, 39],
|
|
29
|
-
grey: [90, 39],
|
|
30
|
-
redBright: [91, 39],
|
|
31
|
-
greenBright: [92, 39],
|
|
32
|
-
yellowBright: [93, 39],
|
|
33
|
-
blueBright: [94, 39],
|
|
34
|
-
magentaBright: [95, 39],
|
|
35
|
-
cyanBright: [96, 39],
|
|
36
|
-
whiteBright: [97, 39]
|
|
37
|
-
},
|
|
38
|
-
bgColor: {
|
|
39
|
-
bgBlack: [40, 49],
|
|
40
|
-
bgRed: [41, 49],
|
|
41
|
-
bgGreen: [42, 49],
|
|
42
|
-
bgYellow: [43, 49],
|
|
43
|
-
bgBlue: [44, 49],
|
|
44
|
-
bgMagenta: [45, 49],
|
|
45
|
-
bgCyan: [46, 49],
|
|
46
|
-
bgWhite: [47, 49],
|
|
47
|
-
bgBlackBright: [100, 49],
|
|
48
|
-
bgGray: [100, 49],
|
|
49
|
-
bgGrey: [100, 49],
|
|
50
|
-
bgRedBright: [101, 49],
|
|
51
|
-
bgGreenBright: [102, 49],
|
|
52
|
-
bgYellowBright: [103, 49],
|
|
53
|
-
bgBlueBright: [104, 49],
|
|
54
|
-
bgMagentaBright: [105, 49],
|
|
55
|
-
bgCyanBright: [106, 49],
|
|
56
|
-
bgWhiteBright: [107, 49]
|
|
57
|
-
}
|
|
58
|
-
};
|
|
59
|
-
Object.keys(styles.modifier);
|
|
60
|
-
const foregroundColorNames = Object.keys(styles.color);
|
|
61
|
-
const backgroundColorNames = Object.keys(styles.bgColor);
|
|
62
|
-
[...foregroundColorNames, ...backgroundColorNames];
|
|
63
|
-
function assembleStyles() {
|
|
64
|
-
const codes = /* @__PURE__ */ new Map();
|
|
65
|
-
for (const [groupName, group] of Object.entries(styles)) {
|
|
66
|
-
for (const [styleName, style] of Object.entries(group)) {
|
|
67
|
-
styles[styleName] = {
|
|
68
|
-
open: `\u001B[${style[0]}m`,
|
|
69
|
-
close: `\u001B[${style[1]}m`
|
|
70
|
-
};
|
|
71
|
-
group[styleName] = styles[styleName];
|
|
72
|
-
codes.set(style[0], style[1]);
|
|
73
|
-
}
|
|
74
|
-
Object.defineProperty(styles, groupName, {
|
|
75
|
-
value: group,
|
|
76
|
-
enumerable: false
|
|
77
|
-
});
|
|
78
|
-
}
|
|
79
|
-
Object.defineProperty(styles, "codes", {
|
|
80
|
-
value: codes,
|
|
81
|
-
enumerable: false
|
|
82
|
-
});
|
|
83
|
-
styles.color.close = "\x1B[39m";
|
|
84
|
-
styles.bgColor.close = "\x1B[49m";
|
|
85
|
-
styles.color.ansi = wrapAnsi16();
|
|
86
|
-
styles.color.ansi256 = wrapAnsi256();
|
|
87
|
-
styles.color.ansi16m = wrapAnsi16m();
|
|
88
|
-
styles.bgColor.ansi = wrapAnsi16(ANSI_BACKGROUND_OFFSET);
|
|
89
|
-
styles.bgColor.ansi256 = wrapAnsi256(ANSI_BACKGROUND_OFFSET);
|
|
90
|
-
styles.bgColor.ansi16m = wrapAnsi16m(ANSI_BACKGROUND_OFFSET);
|
|
91
|
-
Object.defineProperties(styles, {
|
|
92
|
-
rgbToAnsi256: {
|
|
93
|
-
value(red, green, blue) {
|
|
94
|
-
if (red === green && green === blue) {
|
|
95
|
-
if (red < 8) return 16;
|
|
96
|
-
if (red > 248) return 231;
|
|
97
|
-
return Math.round((red - 8) / 247 * 24) + 232;
|
|
98
|
-
}
|
|
99
|
-
return 16 + 36 * Math.round(red / 255 * 5) + 6 * Math.round(green / 255 * 5) + Math.round(blue / 255 * 5);
|
|
100
|
-
},
|
|
101
|
-
enumerable: false
|
|
102
|
-
},
|
|
103
|
-
hexToRgb: {
|
|
104
|
-
value(hex) {
|
|
105
|
-
const matches = /[a-f\d]{6}|[a-f\d]{3}/i.exec(hex.toString(16));
|
|
106
|
-
if (!matches) return [
|
|
107
|
-
0,
|
|
108
|
-
0,
|
|
109
|
-
0
|
|
110
|
-
];
|
|
111
|
-
let [colorString] = matches;
|
|
112
|
-
if (colorString.length === 3) colorString = [...colorString].map((character) => character + character).join("");
|
|
113
|
-
const integer = Number.parseInt(colorString, 16);
|
|
114
|
-
return [
|
|
115
|
-
integer >> 16 & 255,
|
|
116
|
-
integer >> 8 & 255,
|
|
117
|
-
integer & 255
|
|
118
|
-
];
|
|
119
|
-
},
|
|
120
|
-
enumerable: false
|
|
121
|
-
},
|
|
122
|
-
hexToAnsi256: {
|
|
123
|
-
value: (hex) => styles.rgbToAnsi256(...styles.hexToRgb(hex)),
|
|
124
|
-
enumerable: false
|
|
125
|
-
},
|
|
126
|
-
ansi256ToAnsi: {
|
|
127
|
-
value(code) {
|
|
128
|
-
if (code < 8) return 30 + code;
|
|
129
|
-
if (code < 16) return 90 + (code - 8);
|
|
130
|
-
let red;
|
|
131
|
-
let green;
|
|
132
|
-
let blue;
|
|
133
|
-
if (code >= 232) {
|
|
134
|
-
red = ((code - 232) * 10 + 8) / 255;
|
|
135
|
-
green = red;
|
|
136
|
-
blue = red;
|
|
137
|
-
} else {
|
|
138
|
-
code -= 16;
|
|
139
|
-
const remainder = code % 36;
|
|
140
|
-
red = Math.floor(code / 36) / 5;
|
|
141
|
-
green = Math.floor(remainder / 6) / 5;
|
|
142
|
-
blue = remainder % 6 / 5;
|
|
143
|
-
}
|
|
144
|
-
const value = Math.max(red, green, blue) * 2;
|
|
145
|
-
if (value === 0) return 30;
|
|
146
|
-
let result = 30 + (Math.round(blue) << 2 | Math.round(green) << 1 | Math.round(red));
|
|
147
|
-
if (value === 2) result += 60;
|
|
148
|
-
return result;
|
|
149
|
-
},
|
|
150
|
-
enumerable: false
|
|
151
|
-
},
|
|
152
|
-
rgbToAnsi: {
|
|
153
|
-
value: (red, green, blue) => styles.ansi256ToAnsi(styles.rgbToAnsi256(red, green, blue)),
|
|
154
|
-
enumerable: false
|
|
155
|
-
},
|
|
156
|
-
hexToAnsi: {
|
|
157
|
-
value: (hex) => styles.ansi256ToAnsi(styles.hexToAnsi256(hex)),
|
|
158
|
-
enumerable: false
|
|
159
|
-
}
|
|
160
|
-
});
|
|
161
|
-
return styles;
|
|
162
|
-
}
|
|
163
|
-
const ansiStyles = assembleStyles();
|
|
164
|
-
//#endregion
|
|
165
|
-
//#region ../../node_modules/.pnpm/get-east-asian-width@1.4.0/node_modules/get-east-asian-width/lookup.js
|
|
166
|
-
function isAmbiguous(x) {
|
|
167
|
-
return x === 161 || x === 164 || x === 167 || x === 168 || x === 170 || x === 173 || x === 174 || x >= 176 && x <= 180 || x >= 182 && x <= 186 || x >= 188 && x <= 191 || x === 198 || x === 208 || x === 215 || x === 216 || x >= 222 && x <= 225 || x === 230 || x >= 232 && x <= 234 || x === 236 || x === 237 || x === 240 || x === 242 || x === 243 || x >= 247 && x <= 250 || x === 252 || x === 254 || x === 257 || x === 273 || x === 275 || x === 283 || x === 294 || x === 295 || x === 299 || x >= 305 && x <= 307 || x === 312 || x >= 319 && x <= 322 || x === 324 || x >= 328 && x <= 331 || x === 333 || x === 338 || x === 339 || x === 358 || x === 359 || x === 363 || x === 462 || x === 464 || x === 466 || x === 468 || x === 470 || x === 472 || x === 474 || x === 476 || x === 593 || x === 609 || x === 708 || x === 711 || x >= 713 && x <= 715 || x === 717 || x === 720 || x >= 728 && x <= 731 || x === 733 || x === 735 || x >= 768 && x <= 879 || x >= 913 && x <= 929 || x >= 931 && x <= 937 || x >= 945 && x <= 961 || x >= 963 && x <= 969 || x === 1025 || x >= 1040 && x <= 1103 || x === 1105 || x === 8208 || x >= 8211 && x <= 8214 || x === 8216 || x === 8217 || x === 8220 || x === 8221 || x >= 8224 && x <= 8226 || x >= 8228 && x <= 8231 || x === 8240 || x === 8242 || x === 8243 || x === 8245 || x === 8251 || x === 8254 || x === 8308 || x === 8319 || x >= 8321 && x <= 8324 || x === 8364 || x === 8451 || x === 8453 || x === 8457 || x === 8467 || x === 8470 || x === 8481 || x === 8482 || x === 8486 || x === 8491 || x === 8531 || x === 8532 || x >= 8539 && x <= 8542 || x >= 8544 && x <= 8555 || x >= 8560 && x <= 8569 || x === 8585 || x >= 8592 && x <= 8601 || x === 8632 || x === 8633 || x === 8658 || x === 8660 || x === 8679 || x === 8704 || x === 8706 || x === 8707 || x === 8711 || x === 8712 || x === 8715 || x === 8719 || x === 8721 || x === 8725 || x === 8730 || x >= 8733 && x <= 8736 || x === 8739 || x === 8741 || x >= 8743 && x <= 8748 || x === 8750 || x >= 8756 && x <= 8759 || x === 8764 || x === 8765 || x === 8776 || x === 8780 || x === 8786 || x === 8800 || x === 8801 || x >= 8804 && x <= 8807 || x === 8810 || x === 8811 || x === 8814 || x === 8815 || x === 8834 || x === 8835 || x === 8838 || x === 8839 || x === 8853 || x === 8857 || x === 8869 || x === 8895 || x === 8978 || x >= 9312 && x <= 9449 || x >= 9451 && x <= 9547 || x >= 9552 && x <= 9587 || x >= 9600 && x <= 9615 || x >= 9618 && x <= 9621 || x === 9632 || x === 9633 || x >= 9635 && x <= 9641 || x === 9650 || x === 9651 || x === 9654 || x === 9655 || x === 9660 || x === 9661 || x === 9664 || x === 9665 || x >= 9670 && x <= 9672 || x === 9675 || x >= 9678 && x <= 9681 || x >= 9698 && x <= 9701 || x === 9711 || x === 9733 || x === 9734 || x === 9737 || x === 9742 || x === 9743 || x === 9756 || x === 9758 || x === 9792 || x === 9794 || x === 9824 || x === 9825 || x >= 9827 && x <= 9829 || x >= 9831 && x <= 9834 || x === 9836 || x === 9837 || x === 9839 || x === 9886 || x === 9887 || x === 9919 || x >= 9926 && x <= 9933 || x >= 9935 && x <= 9939 || x >= 9941 && x <= 9953 || x === 9955 || x === 9960 || x === 9961 || x >= 9963 && x <= 9969 || x === 9972 || x >= 9974 && x <= 9977 || x === 9979 || x === 9980 || x === 9982 || x === 9983 || x === 10045 || x >= 10102 && x <= 10111 || x >= 11094 && x <= 11097 || x >= 12872 && x <= 12879 || x >= 57344 && x <= 63743 || x >= 65024 && x <= 65039 || x === 65533 || x >= 127232 && x <= 127242 || x >= 127248 && x <= 127277 || x >= 127280 && x <= 127337 || x >= 127344 && x <= 127373 || x === 127375 || x === 127376 || x >= 127387 && x <= 127404 || x >= 917760 && x <= 917999 || x >= 983040 && x <= 1048573 || x >= 1048576 && x <= 1114109;
|
|
168
|
-
}
|
|
169
|
-
function isFullWidth(x) {
|
|
170
|
-
return x === 12288 || x >= 65281 && x <= 65376 || x >= 65504 && x <= 65510;
|
|
171
|
-
}
|
|
172
|
-
function isWide(x) {
|
|
173
|
-
return x >= 4352 && x <= 4447 || x === 8986 || x === 8987 || x === 9001 || x === 9002 || x >= 9193 && x <= 9196 || x === 9200 || x === 9203 || x === 9725 || x === 9726 || x === 9748 || x === 9749 || x >= 9776 && x <= 9783 || x >= 9800 && x <= 9811 || x === 9855 || x >= 9866 && x <= 9871 || x === 9875 || x === 9889 || x === 9898 || x === 9899 || x === 9917 || x === 9918 || x === 9924 || x === 9925 || x === 9934 || x === 9940 || x === 9962 || x === 9970 || x === 9971 || x === 9973 || x === 9978 || x === 9981 || x === 9989 || x === 9994 || x === 9995 || x === 10024 || x === 10060 || x === 10062 || x >= 10067 && x <= 10069 || x === 10071 || x >= 10133 && x <= 10135 || x === 10160 || x === 10175 || x === 11035 || x === 11036 || x === 11088 || x === 11093 || x >= 11904 && x <= 11929 || x >= 11931 && x <= 12019 || x >= 12032 && x <= 12245 || x >= 12272 && x <= 12287 || x >= 12289 && x <= 12350 || x >= 12353 && x <= 12438 || x >= 12441 && x <= 12543 || x >= 12549 && x <= 12591 || x >= 12593 && x <= 12686 || x >= 12688 && x <= 12773 || x >= 12783 && x <= 12830 || x >= 12832 && x <= 12871 || x >= 12880 && x <= 42124 || x >= 42128 && x <= 42182 || x >= 43360 && x <= 43388 || x >= 44032 && x <= 55203 || x >= 63744 && x <= 64255 || x >= 65040 && x <= 65049 || x >= 65072 && x <= 65106 || x >= 65108 && x <= 65126 || x >= 65128 && x <= 65131 || x >= 94176 && x <= 94180 || x >= 94192 && x <= 94198 || x >= 94208 && x <= 101589 || x >= 101631 && x <= 101662 || x >= 101760 && x <= 101874 || x >= 110576 && x <= 110579 || x >= 110581 && x <= 110587 || x === 110589 || x === 110590 || x >= 110592 && x <= 110882 || x === 110898 || x >= 110928 && x <= 110930 || x === 110933 || x >= 110948 && x <= 110951 || x >= 110960 && x <= 111355 || x >= 119552 && x <= 119638 || x >= 119648 && x <= 119670 || x === 126980 || x === 127183 || x === 127374 || x >= 127377 && x <= 127386 || x >= 127488 && x <= 127490 || x >= 127504 && x <= 127547 || x >= 127552 && x <= 127560 || x === 127568 || x === 127569 || x >= 127584 && x <= 127589 || x >= 127744 && x <= 127776 || x >= 127789 && x <= 127797 || x >= 127799 && x <= 127868 || x >= 127870 && x <= 127891 || x >= 127904 && x <= 127946 || x >= 127951 && x <= 127955 || x >= 127968 && x <= 127984 || x === 127988 || x >= 127992 && x <= 128062 || x === 128064 || x >= 128066 && x <= 128252 || x >= 128255 && x <= 128317 || x >= 128331 && x <= 128334 || x >= 128336 && x <= 128359 || x === 128378 || x === 128405 || x === 128406 || x === 128420 || x >= 128507 && x <= 128591 || x >= 128640 && x <= 128709 || x === 128716 || x >= 128720 && x <= 128722 || x >= 128725 && x <= 128728 || x >= 128732 && x <= 128735 || x === 128747 || x === 128748 || x >= 128756 && x <= 128764 || x >= 128992 && x <= 129003 || x === 129008 || x >= 129292 && x <= 129338 || x >= 129340 && x <= 129349 || x >= 129351 && x <= 129535 || x >= 129648 && x <= 129660 || x >= 129664 && x <= 129674 || x >= 129678 && x <= 129734 || x === 129736 || x >= 129741 && x <= 129756 || x >= 129759 && x <= 129770 || x >= 129775 && x <= 129784 || x >= 131072 && x <= 196605 || x >= 196608 && x <= 262141;
|
|
174
|
-
}
|
|
175
|
-
//#endregion
|
|
176
|
-
//#region ../../node_modules/.pnpm/get-east-asian-width@1.4.0/node_modules/get-east-asian-width/index.js
|
|
177
|
-
function validate(codePoint) {
|
|
178
|
-
if (!Number.isSafeInteger(codePoint)) throw new TypeError(`Expected a code point, got \`${typeof codePoint}\`.`);
|
|
179
|
-
}
|
|
180
|
-
function eastAsianWidth(codePoint, { ambiguousAsWide = false } = {}) {
|
|
181
|
-
validate(codePoint);
|
|
182
|
-
if (isFullWidth(codePoint) || isWide(codePoint) || ambiguousAsWide && isAmbiguous(codePoint)) return 2;
|
|
183
|
-
return 1;
|
|
184
|
-
}
|
|
185
|
-
//#endregion
|
|
186
|
-
//#region ../../node_modules/.pnpm/ansi-regex@6.2.2/node_modules/ansi-regex/index.js
|
|
187
|
-
function ansiRegex({ onlyFirst = false } = {}) {
|
|
188
|
-
return new RegExp(`(?:\\u001B\\][\\s\\S]*?(?:\\u0007|\\u001B\\u005C|\\u009C))|[\\u001B\\u009B][[\\]()#;?]*(?:\\d{1,4}(?:[;:]\\d{0,4})*)?[\\dA-PR-TZcf-nq-uy=><~]`, onlyFirst ? void 0 : "g");
|
|
189
|
-
}
|
|
190
|
-
//#endregion
|
|
191
|
-
//#region ../../node_modules/.pnpm/strip-ansi@7.1.2/node_modules/strip-ansi/index.js
|
|
192
|
-
const regex = ansiRegex();
|
|
193
|
-
function stripAnsi(string) {
|
|
194
|
-
if (typeof string !== "string") throw new TypeError(`Expected a \`string\`, got \`${typeof string}\``);
|
|
195
|
-
return string.replace(regex, "");
|
|
196
|
-
}
|
|
197
|
-
//#endregion
|
|
198
|
-
export { ansiStyles as a, isWide as i, eastAsianWidth as n, isFullWidth as r, stripAnsi as t };
|