electrobun 0.0.19-beta.19 → 0.0.19-beta.20
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/package.json +1 -1
- package/src/cli/index.ts +4 -1
package/package.json
CHANGED
package/src/cli/index.ts
CHANGED
|
@@ -156,9 +156,12 @@ async function ensureCoreDependencies() {
|
|
|
156
156
|
|
|
157
157
|
// Extract to dist directory
|
|
158
158
|
console.log('Extracting core dependencies...');
|
|
159
|
+
const distPath = join(ELECTROBUN_DEP_PATH, 'dist');
|
|
160
|
+
mkdirSync(distPath, { recursive: true });
|
|
161
|
+
|
|
159
162
|
await tar.x({
|
|
160
163
|
file: tempFile,
|
|
161
|
-
cwd:
|
|
164
|
+
cwd: distPath,
|
|
162
165
|
});
|
|
163
166
|
|
|
164
167
|
// Clean up temp file
|