nitro-nightly 3.0.1-20251204-002632-497db05f → 3.0.1-20251204-201435-0c3150df
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/_build/common.mjs +1 -1
- package/dist/_build/rolldown.mjs +9 -10
- package/dist/_build/rollup.mjs +13 -20
- package/dist/_build/vite.build.mjs +12 -14
- package/dist/_build/vite.plugin.mjs +8 -8
- package/dist/_chunks/{Ddt06bL8.mjs → CycPUgTQ.mjs} +1 -1
- package/dist/_chunks/{Dkk4dpNb.mjs → DT-wSyHv.mjs} +1 -1
- package/dist/_chunks/{D-63lyig.mjs → DzjzT3Xu.mjs} +1 -1
- package/dist/_chunks/{CvxEFBdh.mjs → vCTaGRPD.mjs} +2 -2
- package/dist/_libs/@pi0/vite-plugin-fullstack.mjs +1923 -0
- package/dist/_libs/@rollup/plugin-commonjs.mjs +3859 -0
- package/dist/_libs/{plugin-inject.mjs → @rollup/plugin-inject.mjs} +2 -3
- package/dist/_libs/{plugin-node-resolve.mjs → @rollup/plugin-node-resolve.mjs} +424 -5
- package/dist/_libs/{plugin-replace.mjs → @rollup/plugin-replace.mjs} +1 -1
- package/dist/_libs/estree-walker.mjs +1 -144
- package/dist/_libs/tinyglobby.mjs +1 -2
- package/dist/_libs/unimport.mjs +3 -4
- package/dist/_libs/unwasm.mjs +1 -1
- package/dist/_presets.mjs +2 -2
- package/dist/builder.mjs +7 -7
- package/dist/cli/_chunks/detect-acorn.mjs +2 -2
- package/dist/cli/_chunks/dev.mjs +2 -2
- package/dist/vite.mjs +12 -14
- package/package.json +3 -3
- package/dist/_libs/commondir.mjs +0 -22
- package/dist/_libs/deepmerge.mjs +0 -86
- package/dist/_libs/fdir.mjs +0 -514
- package/dist/_libs/function-bind.mjs +0 -63
- package/dist/_libs/hasown.mjs +0 -14
- package/dist/_libs/is-core-module.mjs +0 -220
- package/dist/_libs/is-module.mjs +0 -13
- package/dist/_libs/is-reference.mjs +0 -33
- package/dist/_libs/js-tokens.mjs +0 -382
- package/dist/_libs/magic-string.mjs +0 -939
- package/dist/_libs/path-parse.mjs +0 -47
- package/dist/_libs/picomatch.mjs +0 -1673
- package/dist/_libs/plugin-commonjs.mjs +0 -1491
- package/dist/_libs/strip-literal.mjs +0 -51
- package/dist/_libs/vite-plugin-fullstack.mjs +0 -561
- /package/dist/_chunks/{DJvLZH4H.mjs → Df3_4Pam.mjs} +0 -0
- /package/dist/_chunks/{Ddq6HHrM.mjs → dcDd0pkY.mjs} +0 -0
- /package/dist/_libs/{gen-mapping.mjs → @jridgewell/gen-mapping.mjs} +0 -0
- /package/dist/_libs/{remapping.mjs → @jridgewell/remapping.mjs} +0 -0
- /package/dist/_libs/{plugin-alias.mjs → @rollup/plugin-alias.mjs} +0 -0
- /package/dist/_libs/{plugin-json.mjs → @rollup/plugin-json.mjs} +0 -0
|
@@ -1,47 +0,0 @@
|
|
|
1
|
-
import { t as __commonJSMin } from "../_chunks/QkUO_zA6.mjs";
|
|
2
|
-
|
|
3
|
-
//#region node_modules/.pnpm/path-parse@1.0.7/node_modules/path-parse/index.js
|
|
4
|
-
var require_path_parse = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
5
|
-
var isWindows = process.platform === "win32";
|
|
6
|
-
var splitWindowsRe = /^(((?:[a-zA-Z]:|[\\\/]{2}[^\\\/]+[\\\/]+[^\\\/]+)?[\\\/]?)(?:[^\\\/]*[\\\/])*)((\.{1,2}|[^\\\/]+?|)(\.[^.\/\\]*|))[\\\/]*$/;
|
|
7
|
-
var win32 = {};
|
|
8
|
-
function win32SplitPath(filename) {
|
|
9
|
-
return splitWindowsRe.exec(filename).slice(1);
|
|
10
|
-
}
|
|
11
|
-
win32.parse = function(pathString) {
|
|
12
|
-
if (typeof pathString !== "string") throw new TypeError("Parameter 'pathString' must be a string, not " + typeof pathString);
|
|
13
|
-
var allParts = win32SplitPath(pathString);
|
|
14
|
-
if (!allParts || allParts.length !== 5) throw new TypeError("Invalid path '" + pathString + "'");
|
|
15
|
-
return {
|
|
16
|
-
root: allParts[1],
|
|
17
|
-
dir: allParts[0] === allParts[1] ? allParts[0] : allParts[0].slice(0, -1),
|
|
18
|
-
base: allParts[2],
|
|
19
|
-
ext: allParts[4],
|
|
20
|
-
name: allParts[3]
|
|
21
|
-
};
|
|
22
|
-
};
|
|
23
|
-
var splitPathRe = /^((\/?)(?:[^\/]*\/)*)((\.{1,2}|[^\/]+?|)(\.[^.\/]*|))[\/]*$/;
|
|
24
|
-
var posix = {};
|
|
25
|
-
function posixSplitPath(filename) {
|
|
26
|
-
return splitPathRe.exec(filename).slice(1);
|
|
27
|
-
}
|
|
28
|
-
posix.parse = function(pathString) {
|
|
29
|
-
if (typeof pathString !== "string") throw new TypeError("Parameter 'pathString' must be a string, not " + typeof pathString);
|
|
30
|
-
var allParts = posixSplitPath(pathString);
|
|
31
|
-
if (!allParts || allParts.length !== 5) throw new TypeError("Invalid path '" + pathString + "'");
|
|
32
|
-
return {
|
|
33
|
-
root: allParts[1],
|
|
34
|
-
dir: allParts[0].slice(0, -1),
|
|
35
|
-
base: allParts[2],
|
|
36
|
-
ext: allParts[4],
|
|
37
|
-
name: allParts[3]
|
|
38
|
-
};
|
|
39
|
-
};
|
|
40
|
-
if (isWindows) module.exports = win32.parse;
|
|
41
|
-
else module.exports = posix.parse;
|
|
42
|
-
module.exports.posix = posix.parse;
|
|
43
|
-
module.exports.win32 = win32.parse;
|
|
44
|
-
}));
|
|
45
|
-
|
|
46
|
-
//#endregion
|
|
47
|
-
export { require_path_parse as t };
|