nitro-nightly 3.0.1-20251216-085613-98f51461 → 3.0.1-20251216-092308-c45e3a62
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/shared3.mjs +1 -5
- package/package.json +1 -3
- package/lib/deps/ofetch.mjs +0 -1
- package/lib/deps/ofetch.mts +0 -1
package/dist/_build/shared3.mjs
CHANGED
|
@@ -821,11 +821,7 @@ function virtual(input) {
|
|
|
821
821
|
|
|
822
822
|
//#endregion
|
|
823
823
|
//#region src/build/plugins/resolve.ts
|
|
824
|
-
const subpathMap = {
|
|
825
|
-
"nitro/h3": "h3",
|
|
826
|
-
"nitro/deps/h3": "h3",
|
|
827
|
-
"nitro/deps/ofetch": "ofetch"
|
|
828
|
-
};
|
|
824
|
+
const subpathMap = { "nitro/h3": "h3" };
|
|
829
825
|
function nitroResolveIds() {
|
|
830
826
|
return {
|
|
831
827
|
name: "nitro:resolve-ids",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nitro-nightly",
|
|
3
|
-
"version": "3.0.1-20251216-
|
|
3
|
+
"version": "3.0.1-20251216-092308-c45e3a62",
|
|
4
4
|
"description": "Build and Deploy Universal JavaScript Servers",
|
|
5
5
|
"homepage": "https://nitro.build",
|
|
6
6
|
"repository": "nitrojs/nitro",
|
|
@@ -18,8 +18,6 @@
|
|
|
18
18
|
"./config": "./dist/runtime/config.mjs",
|
|
19
19
|
"./context": "./dist/runtime/context.mjs",
|
|
20
20
|
"./database": "./dist/runtime/database.mjs",
|
|
21
|
-
"./deps/h3": "./lib/deps/h3.mjs",
|
|
22
|
-
"./deps/ofetch": "./lib/deps/ofetch.mjs",
|
|
23
21
|
"./h3": "./lib/deps/h3.mjs",
|
|
24
22
|
"./meta": "./dist/runtime/meta.mjs",
|
|
25
23
|
"./package.json": "./package.json",
|
package/lib/deps/ofetch.mjs
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { $fetch } from "ofetch";
|
package/lib/deps/ofetch.mts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { $fetch } from "ofetch";
|