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.
- package/dist/index.js +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
|
-
|
|
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
|
-
|
|
145
|
+
env: process.env
|
|
146
146
|
});
|
|
147
147
|
} catch {
|
|
148
148
|
}
|