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.
Files changed (2) hide show
  1. package/dist/cli.mjs +1 -1
  2. 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
  );
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "defuss-ssg",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "type": "module",
5
5
  "publishConfig": {
6
6
  "access": "public"