defuss-ssg 0.3.0 → 0.3.1
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/cli.mjs +1 -1
- package/package.json +1 -1
package/dist/cli.mjs
CHANGED
|
@@ -134,7 +134,7 @@ const setup = async (projectDir) => {
|
|
|
134
134
|
const bunEnv = { ...process.env, BUN_WORKSPACE_ROOT: projectDir };
|
|
135
135
|
await runInstall(
|
|
136
136
|
pm,
|
|
137
|
-
["install", "--linker", "isolated"],
|
|
137
|
+
pm === "bun" ? ["install", "--no-cache", "--linker", "isolated"] : ["install"],
|
|
138
138
|
projectDir,
|
|
139
139
|
pm === "bun" ? bunEnv : void 0
|
|
140
140
|
);
|