sparkbun 0.1.6 → 0.1.7
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 +1 -4
package/package.json
CHANGED
package/src/cli/index.ts
CHANGED
|
@@ -163,10 +163,7 @@ async function ensureCoreDependencies(
|
|
|
163
163
|
|
|
164
164
|
// Check platform-specific binaries
|
|
165
165
|
// BUN_BINARY not required — SparkBun compiles the launcher via bun build --compile
|
|
166
|
-
const requiredBinaries = [
|
|
167
|
-
platformPaths.BSDIFF,
|
|
168
|
-
platformPaths.BSPATCH,
|
|
169
|
-
];
|
|
166
|
+
const requiredBinaries: string[] = [];
|
|
170
167
|
if (platformOS === "macos") {
|
|
171
168
|
requiredBinaries.push(
|
|
172
169
|
platformPaths.NATIVE_WRAPPER_MACOS,
|