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.
Files changed (45) hide show
  1. package/dist/_build/common.mjs +1 -1
  2. package/dist/_build/rolldown.mjs +9 -10
  3. package/dist/_build/rollup.mjs +13 -20
  4. package/dist/_build/vite.build.mjs +12 -14
  5. package/dist/_build/vite.plugin.mjs +8 -8
  6. package/dist/_chunks/{Ddt06bL8.mjs → CycPUgTQ.mjs} +1 -1
  7. package/dist/_chunks/{Dkk4dpNb.mjs → DT-wSyHv.mjs} +1 -1
  8. package/dist/_chunks/{D-63lyig.mjs → DzjzT3Xu.mjs} +1 -1
  9. package/dist/_chunks/{CvxEFBdh.mjs → vCTaGRPD.mjs} +2 -2
  10. package/dist/_libs/@pi0/vite-plugin-fullstack.mjs +1923 -0
  11. package/dist/_libs/@rollup/plugin-commonjs.mjs +3859 -0
  12. package/dist/_libs/{plugin-inject.mjs → @rollup/plugin-inject.mjs} +2 -3
  13. package/dist/_libs/{plugin-node-resolve.mjs → @rollup/plugin-node-resolve.mjs} +424 -5
  14. package/dist/_libs/{plugin-replace.mjs → @rollup/plugin-replace.mjs} +1 -1
  15. package/dist/_libs/estree-walker.mjs +1 -144
  16. package/dist/_libs/tinyglobby.mjs +1 -2
  17. package/dist/_libs/unimport.mjs +3 -4
  18. package/dist/_libs/unwasm.mjs +1 -1
  19. package/dist/_presets.mjs +2 -2
  20. package/dist/builder.mjs +7 -7
  21. package/dist/cli/_chunks/detect-acorn.mjs +2 -2
  22. package/dist/cli/_chunks/dev.mjs +2 -2
  23. package/dist/vite.mjs +12 -14
  24. package/package.json +3 -3
  25. package/dist/_libs/commondir.mjs +0 -22
  26. package/dist/_libs/deepmerge.mjs +0 -86
  27. package/dist/_libs/fdir.mjs +0 -514
  28. package/dist/_libs/function-bind.mjs +0 -63
  29. package/dist/_libs/hasown.mjs +0 -14
  30. package/dist/_libs/is-core-module.mjs +0 -220
  31. package/dist/_libs/is-module.mjs +0 -13
  32. package/dist/_libs/is-reference.mjs +0 -33
  33. package/dist/_libs/js-tokens.mjs +0 -382
  34. package/dist/_libs/magic-string.mjs +0 -939
  35. package/dist/_libs/path-parse.mjs +0 -47
  36. package/dist/_libs/picomatch.mjs +0 -1673
  37. package/dist/_libs/plugin-commonjs.mjs +0 -1491
  38. package/dist/_libs/strip-literal.mjs +0 -51
  39. package/dist/_libs/vite-plugin-fullstack.mjs +0 -561
  40. /package/dist/_chunks/{DJvLZH4H.mjs → Df3_4Pam.mjs} +0 -0
  41. /package/dist/_chunks/{Ddq6HHrM.mjs → dcDd0pkY.mjs} +0 -0
  42. /package/dist/_libs/{gen-mapping.mjs → @jridgewell/gen-mapping.mjs} +0 -0
  43. /package/dist/_libs/{remapping.mjs → @jridgewell/remapping.mjs} +0 -0
  44. /package/dist/_libs/{plugin-alias.mjs → @rollup/plugin-alias.mjs} +0 -0
  45. /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 };