Comparing version 0.0.1 to 0.1.0
{ | ||
"name": "vitefu", | ||
"description": "Utilities for building frameworks with Vite", | ||
"version": "0.0.1", | ||
"version": "0.1.0", | ||
"license": "MIT", | ||
@@ -6,0 +6,0 @@ "type": "module", |
@@ -167,3 +167,3 @@ import fs from 'node:fs/promises' | ||
// dependency installations, such as pnpm. | ||
if (!options.isBuild) { | ||
if (!options.isBuild && !ssrExternal.includes(dep)) { | ||
ssrExternal.push(dep) | ||
@@ -182,3 +182,3 @@ } | ||
try { | ||
return await importMetaResolve(path.join(dep, 'package.json'), parent) | ||
return await importMetaResolve(path.posix.join(dep, 'package.json'), parent) | ||
} catch {} | ||
@@ -185,0 +185,0 @@ // try default import, then walk up the directory tree |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
15269
2