radiant-docs 0.1.1 → 0.1.3

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/index.js +2 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -114,7 +114,7 @@ async function installDependencies(cacheDir) {
114
114
  execSync("npm install --silent --no-fund --no-audit", {
115
115
  cwd: cacheDir,
116
116
  stdio: "pipe",
117
- shell: process.env.SHELL || "/bin/sh"
117
+ env: process.env
118
118
  });
119
119
  log.success("Dependencies installed.");
120
120
  } catch (error) {
@@ -142,7 +142,7 @@ async function runAstroSync(cacheDir) {
142
142
  execSync("npx astro sync", {
143
143
  cwd: cacheDir,
144
144
  stdio: "pipe",
145
- shell: process.env.SHELL || "/bin/sh"
145
+ env: process.env
146
146
  });
147
147
  } catch {
148
148
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "radiant-docs",
3
- "version": "0.1.1",
3
+ "version": "0.1.3",
4
4
  "description": "CLI tool for previewing Radiant documentation locally",
5
5
  "type": "module",
6
6
  "bin": {