@storybook/addon-vitest 0.0.0-pr-31819-sha-a15101b6 → 0.0.0-pr-32207-sha-0c91842b
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-55WZLVGN.mjs +11 -0
- package/dist/chunk-JKRQGT2U.mjs +10 -0
- package/dist/index.js +6 -9
- package/dist/index.mjs +5 -0
- package/dist/manager.js +8 -7516
- package/dist/node/coverage-reporter.d.ts +184 -0
- package/dist/node/coverage-reporter.js +4 -1898
- package/dist/node/coverage-reporter.mjs +12 -0
- package/dist/node/vitest.d.ts +2 -0
- package/dist/node/vitest.js +17 -740
- package/dist/node/vitest.mjs +19 -0
- package/dist/postinstall.js +88 -2076
- package/dist/preset.js +31 -360
- package/dist/vitest-plugin/global-setup.d.ts +6 -0
- package/dist/vitest-plugin/global-setup.js +6 -200
- package/dist/vitest-plugin/global-setup.mjs +13 -0
- package/dist/vitest-plugin/index.js +43 -3823
- package/dist/vitest-plugin/index.mjs +28 -0
- package/dist/vitest-plugin/setup-file.d.ts +14 -0
- package/dist/vitest-plugin/setup-file.js +8 -30
- package/dist/vitest-plugin/setup-file.mjs +9 -0
- package/dist/vitest-plugin/test-utils.d.ts +20 -0
- package/dist/vitest-plugin/test-utils.js +8 -102
- package/dist/vitest-plugin/test-utils.mjs +8 -0
- package/manager.js +1 -1
- package/manager.mjs +1 -0
- package/package.json +89 -16
- package/postinstall.js +1 -0
- package/postinstall.mjs +1 -0
- package/preset.js +1 -1
- package/preset.mjs +1 -0
- package/dist/_browser-chunks/chunk-JFJ5UJ7Q.js +0 -11
- package/dist/_browser-chunks/chunk-PMYV6BH2.js +0 -76
- package/dist/_node-chunks/chunk-2NHXRRNR.js +0 -6873
- package/dist/_node-chunks/chunk-6HN4LPYT.js +0 -481
- package/dist/_node-chunks/chunk-E6R4IKFS.js +0 -295
- package/dist/_node-chunks/chunk-FPMFMFWK.js +0 -55
- package/dist/_node-chunks/chunk-GJQYRLPS.js +0 -2264
- package/dist/_node-chunks/chunk-LWLQWSTY.js +0 -103
- package/dist/_node-chunks/chunk-QB3TZK72.js +0 -91
- package/dist/_node-chunks/chunk-SRR4DVLV.js +0 -247
|
@@ -1,103 +0,0 @@
|
|
|
1
|
-
import CJS_COMPAT_NODE_URL_ksgvf6okl3d from 'node:url';
|
|
2
|
-
import CJS_COMPAT_NODE_PATH_ksgvf6okl3d from 'node:path';
|
|
3
|
-
import CJS_COMPAT_NODE_MODULE_ksgvf6okl3d from "node:module";
|
|
4
|
-
|
|
5
|
-
var __filename = CJS_COMPAT_NODE_URL_ksgvf6okl3d.fileURLToPath(import.meta.url);
|
|
6
|
-
var __dirname = CJS_COMPAT_NODE_PATH_ksgvf6okl3d.dirname(__filename);
|
|
7
|
-
var require = CJS_COMPAT_NODE_MODULE_ksgvf6okl3d.createRequire(import.meta.url);
|
|
8
|
-
|
|
9
|
-
// ------------------------------------------------------------
|
|
10
|
-
// end of CJS compatibility banner, injected by Storybook's esbuild configuration
|
|
11
|
-
// ------------------------------------------------------------
|
|
12
|
-
|
|
13
|
-
// ../../core/src/component-testing/constants.ts
|
|
14
|
-
var ADDON_ID = "storybook/interactions";
|
|
15
|
-
var PANEL_ID = `${ADDON_ID}/panel`;
|
|
16
|
-
var DOCUMENTATION_LINK = "writing-tests/integrations/vitest-addon";
|
|
17
|
-
var DOCUMENTATION_DISCREPANCY_LINK = `${DOCUMENTATION_LINK}#what-happens-when-there-are-different-test-results-in-multiple-environments`;
|
|
18
|
-
|
|
19
|
-
// ../a11y/src/constants.ts
|
|
20
|
-
var ADDON_ID2 = "storybook/a11y";
|
|
21
|
-
var PANEL_ID2 = `${ADDON_ID2}/panel`;
|
|
22
|
-
var RESULT = `${ADDON_ID2}/result`;
|
|
23
|
-
var REQUEST = `${ADDON_ID2}/request`;
|
|
24
|
-
var RUNNING = `${ADDON_ID2}/running`;
|
|
25
|
-
var ERROR = `${ADDON_ID2}/error`;
|
|
26
|
-
var MANUAL = `${ADDON_ID2}/manual`;
|
|
27
|
-
var SELECT = `${ADDON_ID2}/select`;
|
|
28
|
-
var DOCUMENTATION_LINK2 = "writing-tests/accessibility-testing";
|
|
29
|
-
var DOCUMENTATION_DISCREPANCY_LINK2 = `${DOCUMENTATION_LINK2}#why-are-my-tests-failing-in-different-environments`;
|
|
30
|
-
|
|
31
|
-
// src/constants.ts
|
|
32
|
-
var ADDON_ID3 = "storybook/test";
|
|
33
|
-
var TEST_PROVIDER_ID = `${ADDON_ID3}/test-provider`;
|
|
34
|
-
var STORYBOOK_ADDON_TEST_CHANNEL = "STORYBOOK_ADDON_TEST_CHANNEL";
|
|
35
|
-
var DOCUMENTATION_LINK3 = "writing-tests/integrations/vitest-addon";
|
|
36
|
-
var DOCUMENTATION_FATAL_ERROR_LINK = `${DOCUMENTATION_LINK3}#what-happens-if-vitest-itself-has-an-error`;
|
|
37
|
-
var COVERAGE_DIRECTORY = "coverage";
|
|
38
|
-
var SUPPORTED_FRAMEWORKS = [
|
|
39
|
-
"@storybook/nextjs",
|
|
40
|
-
"@storybook/nextjs-vite",
|
|
41
|
-
"@storybook/react-vite",
|
|
42
|
-
"@storybook/svelte-vite",
|
|
43
|
-
"@storybook/vue3-vite",
|
|
44
|
-
"@storybook/html-vite",
|
|
45
|
-
"@storybook/web-components-vite",
|
|
46
|
-
"@storybook/sveltekit",
|
|
47
|
-
"@storybook/react-native-web-vite"
|
|
48
|
-
];
|
|
49
|
-
var storeOptions = {
|
|
50
|
-
id: ADDON_ID3,
|
|
51
|
-
initialState: {
|
|
52
|
-
config: {
|
|
53
|
-
coverage: false,
|
|
54
|
-
a11y: false
|
|
55
|
-
},
|
|
56
|
-
watching: false,
|
|
57
|
-
cancelling: false,
|
|
58
|
-
fatalError: void 0,
|
|
59
|
-
indexUrl: void 0,
|
|
60
|
-
previewAnnotations: [],
|
|
61
|
-
currentRun: {
|
|
62
|
-
triggeredBy: void 0,
|
|
63
|
-
config: {
|
|
64
|
-
coverage: false,
|
|
65
|
-
a11y: false
|
|
66
|
-
},
|
|
67
|
-
componentTestCount: {
|
|
68
|
-
success: 0,
|
|
69
|
-
error: 0
|
|
70
|
-
},
|
|
71
|
-
a11yCount: {
|
|
72
|
-
success: 0,
|
|
73
|
-
warning: 0,
|
|
74
|
-
error: 0
|
|
75
|
-
},
|
|
76
|
-
storyIds: void 0,
|
|
77
|
-
totalTestCount: void 0,
|
|
78
|
-
startedAt: void 0,
|
|
79
|
-
finishedAt: void 0,
|
|
80
|
-
unhandledErrors: [],
|
|
81
|
-
coverageSummary: void 0
|
|
82
|
-
}
|
|
83
|
-
}
|
|
84
|
-
};
|
|
85
|
-
var STORE_CHANNEL_EVENT_NAME = `UNIVERSAL_STORE:${storeOptions.id}`;
|
|
86
|
-
var STATUS_STORE_CHANNEL_EVENT_NAME = "UNIVERSAL_STORE:storybook/status";
|
|
87
|
-
var TEST_PROVIDER_STORE_CHANNEL_EVENT_NAME = "UNIVERSAL_STORE:storybook/test-provider";
|
|
88
|
-
var STATUS_TYPE_ID_COMPONENT_TEST = "storybook/component-test";
|
|
89
|
-
var STATUS_TYPE_ID_A11Y = "storybook/a11y";
|
|
90
|
-
|
|
91
|
-
export {
|
|
92
|
-
ADDON_ID3 as ADDON_ID,
|
|
93
|
-
STORYBOOK_ADDON_TEST_CHANNEL,
|
|
94
|
-
DOCUMENTATION_LINK3 as DOCUMENTATION_LINK,
|
|
95
|
-
COVERAGE_DIRECTORY,
|
|
96
|
-
SUPPORTED_FRAMEWORKS,
|
|
97
|
-
storeOptions,
|
|
98
|
-
STORE_CHANNEL_EVENT_NAME,
|
|
99
|
-
STATUS_STORE_CHANNEL_EVENT_NAME,
|
|
100
|
-
TEST_PROVIDER_STORE_CHANNEL_EVENT_NAME,
|
|
101
|
-
STATUS_TYPE_ID_COMPONENT_TEST,
|
|
102
|
-
STATUS_TYPE_ID_A11Y
|
|
103
|
-
};
|
|
@@ -1,91 +0,0 @@
|
|
|
1
|
-
import CJS_COMPAT_NODE_URL_ksgvf6okl3d from 'node:url';
|
|
2
|
-
import CJS_COMPAT_NODE_PATH_ksgvf6okl3d from 'node:path';
|
|
3
|
-
import CJS_COMPAT_NODE_MODULE_ksgvf6okl3d from "node:module";
|
|
4
|
-
|
|
5
|
-
var __filename = CJS_COMPAT_NODE_URL_ksgvf6okl3d.fileURLToPath(import.meta.url);
|
|
6
|
-
var __dirname = CJS_COMPAT_NODE_PATH_ksgvf6okl3d.dirname(__filename);
|
|
7
|
-
var require = CJS_COMPAT_NODE_MODULE_ksgvf6okl3d.createRequire(import.meta.url);
|
|
8
|
-
|
|
9
|
-
// ------------------------------------------------------------
|
|
10
|
-
// end of CJS compatibility banner, injected by Storybook's esbuild configuration
|
|
11
|
-
// ------------------------------------------------------------
|
|
12
|
-
import {
|
|
13
|
-
__commonJS,
|
|
14
|
-
__name
|
|
15
|
-
} from "./chunk-FPMFMFWK.js";
|
|
16
|
-
|
|
17
|
-
// ../../node_modules/picocolors/picocolors.js
|
|
18
|
-
var require_picocolors = __commonJS({
|
|
19
|
-
"../../node_modules/picocolors/picocolors.js"(exports, module) {
|
|
20
|
-
var p = process || {};
|
|
21
|
-
var argv = p.argv || [];
|
|
22
|
-
var env = p.env || {};
|
|
23
|
-
var isColorSupported = !(!!env.NO_COLOR || argv.includes("--no-color")) && (!!env.FORCE_COLOR || argv.includes("--color") || p.platform === "win32" || (p.stdout || {}).isTTY && env.TERM !== "dumb" || !!env.CI);
|
|
24
|
-
var formatter = /* @__PURE__ */ __name((open, close, replace = open) => (input) => {
|
|
25
|
-
let string = "" + input, index = string.indexOf(close, open.length);
|
|
26
|
-
return ~index ? open + replaceClose(string, close, replace, index) + close : open + string + close;
|
|
27
|
-
}, "formatter");
|
|
28
|
-
var replaceClose = /* @__PURE__ */ __name((string, close, replace, index) => {
|
|
29
|
-
let result = "", cursor = 0;
|
|
30
|
-
do {
|
|
31
|
-
result += string.substring(cursor, index) + replace;
|
|
32
|
-
cursor = index + close.length;
|
|
33
|
-
index = string.indexOf(close, cursor);
|
|
34
|
-
} while (~index);
|
|
35
|
-
return result + string.substring(cursor);
|
|
36
|
-
}, "replaceClose");
|
|
37
|
-
var createColors = /* @__PURE__ */ __name((enabled = isColorSupported) => {
|
|
38
|
-
let f = enabled ? formatter : () => String;
|
|
39
|
-
return {
|
|
40
|
-
isColorSupported: enabled,
|
|
41
|
-
reset: f("\x1B[0m", "\x1B[0m"),
|
|
42
|
-
bold: f("\x1B[1m", "\x1B[22m", "\x1B[22m\x1B[1m"),
|
|
43
|
-
dim: f("\x1B[2m", "\x1B[22m", "\x1B[22m\x1B[2m"),
|
|
44
|
-
italic: f("\x1B[3m", "\x1B[23m"),
|
|
45
|
-
underline: f("\x1B[4m", "\x1B[24m"),
|
|
46
|
-
inverse: f("\x1B[7m", "\x1B[27m"),
|
|
47
|
-
hidden: f("\x1B[8m", "\x1B[28m"),
|
|
48
|
-
strikethrough: f("\x1B[9m", "\x1B[29m"),
|
|
49
|
-
black: f("\x1B[30m", "\x1B[39m"),
|
|
50
|
-
red: f("\x1B[31m", "\x1B[39m"),
|
|
51
|
-
green: f("\x1B[32m", "\x1B[39m"),
|
|
52
|
-
yellow: f("\x1B[33m", "\x1B[39m"),
|
|
53
|
-
blue: f("\x1B[34m", "\x1B[39m"),
|
|
54
|
-
magenta: f("\x1B[35m", "\x1B[39m"),
|
|
55
|
-
cyan: f("\x1B[36m", "\x1B[39m"),
|
|
56
|
-
white: f("\x1B[37m", "\x1B[39m"),
|
|
57
|
-
gray: f("\x1B[90m", "\x1B[39m"),
|
|
58
|
-
bgBlack: f("\x1B[40m", "\x1B[49m"),
|
|
59
|
-
bgRed: f("\x1B[41m", "\x1B[49m"),
|
|
60
|
-
bgGreen: f("\x1B[42m", "\x1B[49m"),
|
|
61
|
-
bgYellow: f("\x1B[43m", "\x1B[49m"),
|
|
62
|
-
bgBlue: f("\x1B[44m", "\x1B[49m"),
|
|
63
|
-
bgMagenta: f("\x1B[45m", "\x1B[49m"),
|
|
64
|
-
bgCyan: f("\x1B[46m", "\x1B[49m"),
|
|
65
|
-
bgWhite: f("\x1B[47m", "\x1B[49m"),
|
|
66
|
-
blackBright: f("\x1B[90m", "\x1B[39m"),
|
|
67
|
-
redBright: f("\x1B[91m", "\x1B[39m"),
|
|
68
|
-
greenBright: f("\x1B[92m", "\x1B[39m"),
|
|
69
|
-
yellowBright: f("\x1B[93m", "\x1B[39m"),
|
|
70
|
-
blueBright: f("\x1B[94m", "\x1B[39m"),
|
|
71
|
-
magentaBright: f("\x1B[95m", "\x1B[39m"),
|
|
72
|
-
cyanBright: f("\x1B[96m", "\x1B[39m"),
|
|
73
|
-
whiteBright: f("\x1B[97m", "\x1B[39m"),
|
|
74
|
-
bgBlackBright: f("\x1B[100m", "\x1B[49m"),
|
|
75
|
-
bgRedBright: f("\x1B[101m", "\x1B[49m"),
|
|
76
|
-
bgGreenBright: f("\x1B[102m", "\x1B[49m"),
|
|
77
|
-
bgYellowBright: f("\x1B[103m", "\x1B[49m"),
|
|
78
|
-
bgBlueBright: f("\x1B[104m", "\x1B[49m"),
|
|
79
|
-
bgMagentaBright: f("\x1B[105m", "\x1B[49m"),
|
|
80
|
-
bgCyanBright: f("\x1B[106m", "\x1B[49m"),
|
|
81
|
-
bgWhiteBright: f("\x1B[107m", "\x1B[49m")
|
|
82
|
-
};
|
|
83
|
-
}, "createColors");
|
|
84
|
-
module.exports = createColors();
|
|
85
|
-
module.exports.createColors = createColors;
|
|
86
|
-
}
|
|
87
|
-
});
|
|
88
|
-
|
|
89
|
-
export {
|
|
90
|
-
require_picocolors
|
|
91
|
-
};
|
|
@@ -1,247 +0,0 @@
|
|
|
1
|
-
import CJS_COMPAT_NODE_URL_ksgvf6okl3d from 'node:url';
|
|
2
|
-
import CJS_COMPAT_NODE_PATH_ksgvf6okl3d from 'node:path';
|
|
3
|
-
import CJS_COMPAT_NODE_MODULE_ksgvf6okl3d from "node:module";
|
|
4
|
-
|
|
5
|
-
var __filename = CJS_COMPAT_NODE_URL_ksgvf6okl3d.fileURLToPath(import.meta.url);
|
|
6
|
-
var __dirname = CJS_COMPAT_NODE_PATH_ksgvf6okl3d.dirname(__filename);
|
|
7
|
-
var require = CJS_COMPAT_NODE_MODULE_ksgvf6okl3d.createRequire(import.meta.url);
|
|
8
|
-
|
|
9
|
-
// ------------------------------------------------------------
|
|
10
|
-
// end of CJS compatibility banner, injected by Storybook's esbuild configuration
|
|
11
|
-
// ------------------------------------------------------------
|
|
12
|
-
import {
|
|
13
|
-
__name
|
|
14
|
-
} from "./chunk-FPMFMFWK.js";
|
|
15
|
-
|
|
16
|
-
// ../../node_modules/pathe/dist/shared/pathe.ff20891b.mjs
|
|
17
|
-
var _DRIVE_LETTER_START_RE = /^[A-Za-z]:\//;
|
|
18
|
-
function normalizeWindowsPath(input = "") {
|
|
19
|
-
if (!input) {
|
|
20
|
-
return input;
|
|
21
|
-
}
|
|
22
|
-
return input.replace(/\\/g, "/").replace(_DRIVE_LETTER_START_RE, (r) => r.toUpperCase());
|
|
23
|
-
}
|
|
24
|
-
__name(normalizeWindowsPath, "normalizeWindowsPath");
|
|
25
|
-
var _UNC_REGEX = /^[/\\]{2}/;
|
|
26
|
-
var _IS_ABSOLUTE_RE = /^[/\\](?![/\\])|^[/\\]{2}(?!\.)|^[A-Za-z]:[/\\]/;
|
|
27
|
-
var _DRIVE_LETTER_RE = /^[A-Za-z]:$/;
|
|
28
|
-
var _ROOT_FOLDER_RE = /^\/([A-Za-z]:)?$/;
|
|
29
|
-
var sep = "/";
|
|
30
|
-
var delimiter = ":";
|
|
31
|
-
var normalize = /* @__PURE__ */ __name(function(path2) {
|
|
32
|
-
if (path2.length === 0) {
|
|
33
|
-
return ".";
|
|
34
|
-
}
|
|
35
|
-
path2 = normalizeWindowsPath(path2);
|
|
36
|
-
const isUNCPath = path2.match(_UNC_REGEX);
|
|
37
|
-
const isPathAbsolute = isAbsolute(path2);
|
|
38
|
-
const trailingSeparator = path2[path2.length - 1] === "/";
|
|
39
|
-
path2 = normalizeString(path2, !isPathAbsolute);
|
|
40
|
-
if (path2.length === 0) {
|
|
41
|
-
if (isPathAbsolute) {
|
|
42
|
-
return "/";
|
|
43
|
-
}
|
|
44
|
-
return trailingSeparator ? "./" : ".";
|
|
45
|
-
}
|
|
46
|
-
if (trailingSeparator) {
|
|
47
|
-
path2 += "/";
|
|
48
|
-
}
|
|
49
|
-
if (_DRIVE_LETTER_RE.test(path2)) {
|
|
50
|
-
path2 += "/";
|
|
51
|
-
}
|
|
52
|
-
if (isUNCPath) {
|
|
53
|
-
if (!isPathAbsolute) {
|
|
54
|
-
return `//./${path2}`;
|
|
55
|
-
}
|
|
56
|
-
return `//${path2}`;
|
|
57
|
-
}
|
|
58
|
-
return isPathAbsolute && !isAbsolute(path2) ? `/${path2}` : path2;
|
|
59
|
-
}, "normalize");
|
|
60
|
-
var join = /* @__PURE__ */ __name(function(...arguments_) {
|
|
61
|
-
if (arguments_.length === 0) {
|
|
62
|
-
return ".";
|
|
63
|
-
}
|
|
64
|
-
let joined;
|
|
65
|
-
for (const argument of arguments_) {
|
|
66
|
-
if (argument && argument.length > 0) {
|
|
67
|
-
if (joined === void 0) {
|
|
68
|
-
joined = argument;
|
|
69
|
-
} else {
|
|
70
|
-
joined += `/${argument}`;
|
|
71
|
-
}
|
|
72
|
-
}
|
|
73
|
-
}
|
|
74
|
-
if (joined === void 0) {
|
|
75
|
-
return ".";
|
|
76
|
-
}
|
|
77
|
-
return normalize(joined.replace(/\/\/+/g, "/"));
|
|
78
|
-
}, "join");
|
|
79
|
-
function cwd() {
|
|
80
|
-
if (typeof process !== "undefined" && typeof process.cwd === "function") {
|
|
81
|
-
return process.cwd().replace(/\\/g, "/");
|
|
82
|
-
}
|
|
83
|
-
return "/";
|
|
84
|
-
}
|
|
85
|
-
__name(cwd, "cwd");
|
|
86
|
-
var resolve = /* @__PURE__ */ __name(function(...arguments_) {
|
|
87
|
-
arguments_ = arguments_.map((argument) => normalizeWindowsPath(argument));
|
|
88
|
-
let resolvedPath = "";
|
|
89
|
-
let resolvedAbsolute = false;
|
|
90
|
-
for (let index = arguments_.length - 1; index >= -1 && !resolvedAbsolute; index--) {
|
|
91
|
-
const path2 = index >= 0 ? arguments_[index] : cwd();
|
|
92
|
-
if (!path2 || path2.length === 0) {
|
|
93
|
-
continue;
|
|
94
|
-
}
|
|
95
|
-
resolvedPath = `${path2}/${resolvedPath}`;
|
|
96
|
-
resolvedAbsolute = isAbsolute(path2);
|
|
97
|
-
}
|
|
98
|
-
resolvedPath = normalizeString(resolvedPath, !resolvedAbsolute);
|
|
99
|
-
if (resolvedAbsolute && !isAbsolute(resolvedPath)) {
|
|
100
|
-
return `/${resolvedPath}`;
|
|
101
|
-
}
|
|
102
|
-
return resolvedPath.length > 0 ? resolvedPath : ".";
|
|
103
|
-
}, "resolve");
|
|
104
|
-
function normalizeString(path2, allowAboveRoot) {
|
|
105
|
-
let res = "";
|
|
106
|
-
let lastSegmentLength = 0;
|
|
107
|
-
let lastSlash = -1;
|
|
108
|
-
let dots = 0;
|
|
109
|
-
let char = null;
|
|
110
|
-
for (let index = 0; index <= path2.length; ++index) {
|
|
111
|
-
if (index < path2.length) {
|
|
112
|
-
char = path2[index];
|
|
113
|
-
} else if (char === "/") {
|
|
114
|
-
break;
|
|
115
|
-
} else {
|
|
116
|
-
char = "/";
|
|
117
|
-
}
|
|
118
|
-
if (char === "/") {
|
|
119
|
-
if (lastSlash === index - 1 || dots === 1) ;
|
|
120
|
-
else if (dots === 2) {
|
|
121
|
-
if (res.length < 2 || lastSegmentLength !== 2 || res[res.length - 1] !== "." || res[res.length - 2] !== ".") {
|
|
122
|
-
if (res.length > 2) {
|
|
123
|
-
const lastSlashIndex = res.lastIndexOf("/");
|
|
124
|
-
if (lastSlashIndex === -1) {
|
|
125
|
-
res = "";
|
|
126
|
-
lastSegmentLength = 0;
|
|
127
|
-
} else {
|
|
128
|
-
res = res.slice(0, lastSlashIndex);
|
|
129
|
-
lastSegmentLength = res.length - 1 - res.lastIndexOf("/");
|
|
130
|
-
}
|
|
131
|
-
lastSlash = index;
|
|
132
|
-
dots = 0;
|
|
133
|
-
continue;
|
|
134
|
-
} else if (res.length > 0) {
|
|
135
|
-
res = "";
|
|
136
|
-
lastSegmentLength = 0;
|
|
137
|
-
lastSlash = index;
|
|
138
|
-
dots = 0;
|
|
139
|
-
continue;
|
|
140
|
-
}
|
|
141
|
-
}
|
|
142
|
-
if (allowAboveRoot) {
|
|
143
|
-
res += res.length > 0 ? "/.." : "..";
|
|
144
|
-
lastSegmentLength = 2;
|
|
145
|
-
}
|
|
146
|
-
} else {
|
|
147
|
-
if (res.length > 0) {
|
|
148
|
-
res += `/${path2.slice(lastSlash + 1, index)}`;
|
|
149
|
-
} else {
|
|
150
|
-
res = path2.slice(lastSlash + 1, index);
|
|
151
|
-
}
|
|
152
|
-
lastSegmentLength = index - lastSlash - 1;
|
|
153
|
-
}
|
|
154
|
-
lastSlash = index;
|
|
155
|
-
dots = 0;
|
|
156
|
-
} else if (char === "." && dots !== -1) {
|
|
157
|
-
++dots;
|
|
158
|
-
} else {
|
|
159
|
-
dots = -1;
|
|
160
|
-
}
|
|
161
|
-
}
|
|
162
|
-
return res;
|
|
163
|
-
}
|
|
164
|
-
__name(normalizeString, "normalizeString");
|
|
165
|
-
var isAbsolute = /* @__PURE__ */ __name(function(p) {
|
|
166
|
-
return _IS_ABSOLUTE_RE.test(p);
|
|
167
|
-
}, "isAbsolute");
|
|
168
|
-
var toNamespacedPath = /* @__PURE__ */ __name(function(p) {
|
|
169
|
-
return normalizeWindowsPath(p);
|
|
170
|
-
}, "toNamespacedPath");
|
|
171
|
-
var _EXTNAME_RE = /.(\.[^./]+)$/;
|
|
172
|
-
var extname = /* @__PURE__ */ __name(function(p) {
|
|
173
|
-
const match = _EXTNAME_RE.exec(normalizeWindowsPath(p));
|
|
174
|
-
return match && match[1] || "";
|
|
175
|
-
}, "extname");
|
|
176
|
-
var relative = /* @__PURE__ */ __name(function(from, to) {
|
|
177
|
-
const _from = resolve(from).replace(_ROOT_FOLDER_RE, "$1").split("/");
|
|
178
|
-
const _to = resolve(to).replace(_ROOT_FOLDER_RE, "$1").split("/");
|
|
179
|
-
if (_to[0][1] === ":" && _from[0][1] === ":" && _from[0] !== _to[0]) {
|
|
180
|
-
return _to.join("/");
|
|
181
|
-
}
|
|
182
|
-
const _fromCopy = [..._from];
|
|
183
|
-
for (const segment of _fromCopy) {
|
|
184
|
-
if (_to[0] !== segment) {
|
|
185
|
-
break;
|
|
186
|
-
}
|
|
187
|
-
_from.shift();
|
|
188
|
-
_to.shift();
|
|
189
|
-
}
|
|
190
|
-
return [..._from.map(() => ".."), ..._to].join("/");
|
|
191
|
-
}, "relative");
|
|
192
|
-
var dirname = /* @__PURE__ */ __name(function(p) {
|
|
193
|
-
const segments = normalizeWindowsPath(p).replace(/\/$/, "").split("/").slice(0, -1);
|
|
194
|
-
if (segments.length === 1 && _DRIVE_LETTER_RE.test(segments[0])) {
|
|
195
|
-
segments[0] += "/";
|
|
196
|
-
}
|
|
197
|
-
return segments.join("/") || (isAbsolute(p) ? "/" : ".");
|
|
198
|
-
}, "dirname");
|
|
199
|
-
var format = /* @__PURE__ */ __name(function(p) {
|
|
200
|
-
const segments = [p.root, p.dir, p.base ?? p.name + p.ext].filter(Boolean);
|
|
201
|
-
return normalizeWindowsPath(
|
|
202
|
-
p.root ? resolve(...segments) : segments.join("/")
|
|
203
|
-
);
|
|
204
|
-
}, "format");
|
|
205
|
-
var basename = /* @__PURE__ */ __name(function(p, extension) {
|
|
206
|
-
const lastSegment = normalizeWindowsPath(p).split("/").pop();
|
|
207
|
-
return extension && lastSegment.endsWith(extension) ? lastSegment.slice(0, -extension.length) : lastSegment;
|
|
208
|
-
}, "basename");
|
|
209
|
-
var parse = /* @__PURE__ */ __name(function(p) {
|
|
210
|
-
const root = normalizeWindowsPath(p).split("/").shift() || "/";
|
|
211
|
-
const base = basename(p);
|
|
212
|
-
const extension = extname(base);
|
|
213
|
-
return {
|
|
214
|
-
root,
|
|
215
|
-
dir: dirname(p),
|
|
216
|
-
base,
|
|
217
|
-
ext: extension,
|
|
218
|
-
name: base.slice(0, base.length - extension.length)
|
|
219
|
-
};
|
|
220
|
-
}, "parse");
|
|
221
|
-
var path = {
|
|
222
|
-
__proto__: null,
|
|
223
|
-
basename,
|
|
224
|
-
delimiter,
|
|
225
|
-
dirname,
|
|
226
|
-
extname,
|
|
227
|
-
format,
|
|
228
|
-
isAbsolute,
|
|
229
|
-
join,
|
|
230
|
-
normalize,
|
|
231
|
-
normalizeString,
|
|
232
|
-
parse,
|
|
233
|
-
relative,
|
|
234
|
-
resolve,
|
|
235
|
-
sep,
|
|
236
|
-
toNamespacedPath
|
|
237
|
-
};
|
|
238
|
-
|
|
239
|
-
export {
|
|
240
|
-
sep,
|
|
241
|
-
normalize,
|
|
242
|
-
join,
|
|
243
|
-
resolve,
|
|
244
|
-
relative,
|
|
245
|
-
dirname,
|
|
246
|
-
path
|
|
247
|
-
};
|