boo-flash 0.1.0 → 0.1.2
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/README.md +17 -289
- package/THIRD_PARTY_NOTICES +24 -0
- package/dist/{app-node.js → app.js} +863 -36
- package/dist/boo-flash +2 -2
- package/package.json +3 -3
- package/dist/app-bun.js +0 -3890
package/dist/boo-flash
CHANGED
|
@@ -30,14 +30,14 @@ if command -v node >/dev/null 2>&1 && node -e '
|
|
|
30
30
|
process.exit(major > 26 || (major === 26 && minor >= 4) ? 0 : 1)
|
|
31
31
|
' >/dev/null 2>&1; then
|
|
32
32
|
set_linux_libc node
|
|
33
|
-
exec node --experimental-ffi "$directory/app
|
|
33
|
+
exec node --experimental-ffi "$directory/app.js" "$@"
|
|
34
34
|
fi
|
|
35
35
|
if command -v bun >/dev/null 2>&1 && bun -e '
|
|
36
36
|
const [major, minor] = process.versions.bun.split(".").map(Number)
|
|
37
37
|
process.exit(major > 1 || (major === 1 && minor >= 4) ? 0 : 1)
|
|
38
38
|
' >/dev/null 2>&1; then
|
|
39
39
|
set_linux_libc bun
|
|
40
|
-
exec bun "$directory/app
|
|
40
|
+
exec bun "$directory/app.js" "$@"
|
|
41
41
|
fi
|
|
42
42
|
|
|
43
43
|
echo "boo-flash requires Node.js 26.4 or later, or Bun 1.4 or later." >&2
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "boo-flash",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Flash qualified Boo images to USB drives on macOS and Linux",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -40,8 +40,7 @@
|
|
|
40
40
|
"prepack": "bun run build"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@opentui/core": "0.5.8"
|
|
44
|
-
"solid-js": "1.9.12"
|
|
43
|
+
"@opentui/core": "0.5.8"
|
|
45
44
|
},
|
|
46
45
|
"devDependencies": {
|
|
47
46
|
"@babel/core": "7.28.0",
|
|
@@ -51,6 +50,7 @@
|
|
|
51
50
|
"babel-plugin-module-resolver": "5.0.2",
|
|
52
51
|
"babel-preset-solid": "1.9.12",
|
|
53
52
|
"esbuild": "0.28.2",
|
|
53
|
+
"solid-js": "1.9.12",
|
|
54
54
|
"typescript": "5.9.3"
|
|
55
55
|
}
|
|
56
56
|
}
|