nuxt-bun-compile 0.1.15 → 0.1.17

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 CHANGED
@@ -28,16 +28,39 @@
28
28
 
29
29
  ---
30
30
 
31
+ ## 🚀 Super Flash Start
32
+
33
+ Add the module to any Nuxt project in two steps:
34
+
35
+ **Step 1: Install the module**
36
+
37
+ ```bash
38
+ bun nuxt add nuxt-bun-compile
39
+ ```
40
+
41
+ **Step 2: Build your binary**
42
+
43
+ ```bash
44
+ bun run -b build
45
+ ```
46
+
47
+ Done! Your standalone binary is ready.
48
+
49
+ ---
50
+
31
51
  ## ⚡ Quick Start
32
52
 
33
53
  ```bash
34
- # Install directly from GitHub
54
+ # Install from NPM registry
55
+ bun add -D nuxt-bun-compile
56
+
57
+ # Or install directly from GitHub
35
58
  bun add -D github:jprando/nuxt-bun-compile
36
59
 
37
60
  # Or link locally for development
38
61
  git clone https://github.com/jprando/nuxt-bun-compile.git
39
62
  cd nuxt-bun-compile && bun install && bun link
40
- cd your-nuxt-app && bun link nuxt-bun-compile && bun nuxt nuxt-bun-compile
63
+ cd your-nuxt-app && bun link nuxt-bun-compile && bun nuxt add nuxt-bun-compile
41
64
  ```
42
65
 
43
66
  Add to your `nuxt.config.ts`:
package/README.ptBR.md CHANGED
@@ -28,16 +28,39 @@
28
28
 
29
29
  ---
30
30
 
31
+ ## 🚀 Super Flash Start
32
+
33
+ Adicione o modulo a qualquer projeto Nuxt em dois passos:
34
+
35
+ **Passo 1: Instalar o modulo**
36
+
37
+ ```bash
38
+ bun nuxt add nuxt-bun-compile
39
+ ```
40
+
41
+ **Passo 2: Gerar seu binario**
42
+
43
+ ```bash
44
+ bun run -b build
45
+ ```
46
+
47
+ Pronto! Seu binario standalone esta pronto.
48
+
49
+ ---
50
+
31
51
  ## ⚡ Inicio Rapido
32
52
 
33
53
  ```bash
54
+ # Instalar do NPM registry
55
+ bun add -D nuxt-bun-compile
56
+
34
57
  # Instalar diretamente do GitHub
35
58
  bun add -D github:jprando/nuxt-bun-compile
36
59
 
37
60
  # Ou linkar localmente para desenvolvimento
38
61
  git clone https://github.com/jprando/nuxt-bun-compile.git
39
62
  cd nuxt-bun-compile && bun install && bun link
40
- cd sua-app-nuxt && bun link nuxt-bun-compile && bun nuxt nuxt-bun-compile
63
+ cd sua-app-nuxt && bun link nuxt-bun-compile && bun nuxt add nuxt-bun-compile
41
64
  ```
42
65
 
43
66
  Adicione ao seu `nuxt.config.ts`:
package/dist/module.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "nuxt-bun-compile",
3
3
  "configKey": "bunCompile",
4
- "version": "0.1.15",
4
+ "version": "0.1.17",
5
5
  "builder": {
6
6
  "@nuxt/module-builder": "1.0.2",
7
7
  "unbuild": "3.6.1"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nuxt-bun-compile",
3
- "version": "0.1.15",
3
+ "version": "0.1.17",
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",