nuxt-bun-compile 0.1.22 → 0.1.23
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/module.json +1 -1
- package/dist/module.mjs +4 -0
- package/package.json +1 -1
package/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED
|
@@ -5,9 +5,13 @@ import { join } from 'node:path';
|
|
|
5
5
|
|
|
6
6
|
const VALID_TARGETS = [
|
|
7
7
|
"bun-linux-x64",
|
|
8
|
+
// glibc (padrão)
|
|
8
9
|
"bun-linux-x64-musl",
|
|
10
|
+
// musl (Alpine)
|
|
9
11
|
"bun-linux-arm64",
|
|
12
|
+
// glibc ARM
|
|
10
13
|
"bun-linux-arm64-musl"
|
|
14
|
+
// musl ARM (Alpine)
|
|
11
15
|
];
|
|
12
16
|
const DEFAULT_EXTERNALS = [
|
|
13
17
|
"sharp",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nuxt-bun-compile",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.23",
|
|
4
4
|
"description": "Nuxt module that automatically configures Nitro for `bun build --compile`, generating a standalone executable binary from your Nuxt app.",
|
|
5
5
|
"repository": "jprando/nuxt-bun-compile",
|
|
6
6
|
"license": "MIT",
|