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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/cli/index.ts +1 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sparkbun",
3
- "version": "0.1.6",
3
+ "version": "0.1.7",
4
4
  "description": "Build fast, lightweight, cross-platform desktop apps with TypeScript and Bun.",
5
5
  "license": "MIT",
6
6
  "author": "SparkBun Contributors",
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,