nitropack-nightly 2.11.12-20250512-222705.6e1e4f7d → 2.11.13-20250521-182135.be404a71
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/core/index.mjs +1 -1
- package/dist/meta/index.mjs +1 -1
- package/dist/rollup/index.mjs +0 -6
- package/package.json +1 -1
package/dist/core/index.mjs
CHANGED
|
@@ -1180,7 +1180,7 @@ async function writeTypes(nitro) {
|
|
|
1180
1180
|
relative(typesDir, runtimeDir)
|
|
1181
1181
|
);
|
|
1182
1182
|
const resolvedImportPathMap = /* @__PURE__ */ new Map();
|
|
1183
|
-
for (const i of allImports
|
|
1183
|
+
for (const i of allImports) {
|
|
1184
1184
|
if (resolvedImportPathMap.has(i.from)) {
|
|
1185
1185
|
continue;
|
|
1186
1186
|
}
|
package/dist/meta/index.mjs
CHANGED
package/dist/rollup/index.mjs
CHANGED
|
@@ -1874,12 +1874,6 @@ const getRollupConfig = (nitro) => {
|
|
|
1874
1874
|
`globalThis._importMeta_${d}`
|
|
1875
1875
|
])
|
|
1876
1876
|
),
|
|
1877
|
-
...Object.fromEntries(
|
|
1878
|
-
[";", "(", "{", "}", " ", " ", "\n"].map((d) => [
|
|
1879
|
-
`${d}global.`,
|
|
1880
|
-
`${d}globalThis.`
|
|
1881
|
-
])
|
|
1882
|
-
),
|
|
1883
1877
|
...Object.fromEntries(
|
|
1884
1878
|
Object.entries(buildEnvVars).map(([key, val]) => [
|
|
1885
1879
|
`process.env.${key}`,
|
package/package.json
CHANGED