@stacksjs/i18n 0.70.161 → 0.70.163

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/README.md +24 -12
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -36,23 +36,34 @@ As a developer, Stacks helps you every step along the way—in beginner & expert
36
36
 
37
37
  ## Prerequisites
38
38
 
39
- Stacks runs on [Bun](https://bun.sh). You'll need:
39
+ Stacks uses [Pantry](https://pantry.dev) to provision Bun, Git, SQLite, and the project-specific tools declared by the framework. You'll need:
40
40
 
41
- - **Bun ≥ 1.3.0** install with `curl -fsSL https://bun.sh/install | bash`, or upgrade an existing install with `bun upgrade`.
42
- - **macOS, Linux, or WSL** Windows-native is on the roadmap; today the toolchain assumes a POSIX shell.
43
- - **Node.js is NOT required.** Bun handles the JS/TS runtime, package management, and bundling.
41
+ - **Pantry** - install it with `curl -fsSL https://pantry.dev | bash`, then run `pantry bootstrap` once to configure your shell.
42
+ - **macOS, Linux, or WSL** - Windows-native support is on the roadmap. The current toolchain assumes a POSIX shell.
44
43
 
45
- That's it for the framework itself. Individual features (Postgres, Redis, AWS deploys, etc.) bring their own prereqs each is called out where it matters in the docs.
44
+ Pantry installs and pins Bun 1.3 or newer for each Stacks project, then keeps the rest of the machine and project dependencies in sync. Features such as PostgreSQL, Redis, and cloud deployment add their requirements through the same Pantry manifest where possible, with feature-specific configuration documented alongside them.
45
+
46
+ Stacks pins Pantry [`v0.10.36`](https://github.com/pantry-pm/pantry/tree/v0.10.36)
47
+ as an external toolchain contract. Resolution sources, lockfile and integrity
48
+ rules, lifecycle trust, registry routes, authentication, storage, and failure
49
+ modes are documented in the source-linked whitepaper references for the
50
+ [package manager](https://whitepaper.stacksjs.com/reference/package-manager) and
51
+ [registry](https://whitepaper.stacksjs.com/reference/registry). Stacks does not
52
+ redefine those behaviors.
46
53
 
47
54
  ## Get Started
48
55
 
49
- The fastest path, assuming Bun is installed:
56
+ The fastest path after Pantry is installed:
50
57
 
51
58
  ```bash
52
- bunx @stacksjs/buddy new my-project
59
+ panx @stacksjs/buddy new my-project
53
60
  ```
54
61
 
55
- A one-line installer (`curl -Ssf stacksjs.com/install | sh`) is also planned and will appear here once it lands; for now the `bunx` form above is the supported install path.
62
+ Pantry executes Buddy in an isolated environment and provisions the generated project's declared toolchain during setup.
63
+
64
+ For frontend experiments in the browser, open the live stx starter:
65
+
66
+ [![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/fork/github/stacksjs/stackblitz?title=Stacks%20Starter)
56
67
 
57
68
  ## Usage
58
69
 
@@ -80,7 +91,7 @@ buddy --help # view help menu
80
91
 
81
92
  buddy new my-project # creates a new Stacks project
82
93
  buddy install # installs dependencies
83
- buddy add # adds a stack or dependency
94
+ buddy add calendar # pulls a registered project-shaped stack into this project
84
95
  buddy fresh # fresh reinstall of all deps (--force skips the confirmation)
85
96
  buddy clean # removes all deps (--force skips the confirmation)
86
97
  buddy setup # sets up the project initially
@@ -117,7 +128,7 @@ buddy build # select a specific build (follow CLI prompts)
117
128
  buddy build:frontend # builds the frontend (aliases: build:views, build:pages)
118
129
  buddy build:desktop # builds Desktop application
119
130
  buddy build:functions # builds function library
120
- buddy build:components # builds Vue component library & Web Component library
131
+ buddy build:components # builds the STX component library and Web Component library
121
132
  buddy build:web-components # builds framework agnostic Web Component library (i.e. Custom Elements)
122
133
  buddy build:cli # builds the Buddy CLI binary
123
134
  buddy build:server # builds the Stacks cloud server (Docker image)
@@ -145,7 +156,7 @@ buddy make:migration create_cars_table # creates a cars migration file
145
156
  buddy make:factory cars # creates a Car factory file
146
157
  buddy make:notification welcome-email # bootstraps a welcome-email notification
147
158
  buddy make:lang de # bootstraps a lang/de.yml language file
148
- buddy make:stack my-plugin # scaffolds a publishable stack/plugin (new project? use `bunx @stacksjs/buddy new`)
159
+ buddy make:stack my-plugin # scaffolds a project-shaped registry stack (new project? use `panx @stacksjs/buddy new`)
149
160
 
150
161
  buddy migrate # runs database migrations
151
162
  buddy migrate:fresh # drops all tables & re-runs migrations (destroys all data; --seed reseeds)
@@ -299,6 +310,7 @@ _Focus on coding, not publishing._
299
310
 
300
311
  Convention over configuration, while staying wholly configurable. _No more boilerplate._
301
312
 
313
+ - 🧠 **LLM-Friendly Authoring** _models generate compact application intent instead of repeating framework glue or reading `node_modules`_
302
314
  - 💎 **Automated Upgrades** _no need to worry about upgrading to the latest versions, Stacks upgrades you_
303
315
  - 🦋 **Pretty Dev URLs** _your-project.localhost instead of localhost:3000_
304
316
  - 💡 **IDE Integration** _auto-completions, inline docs & a powerful IDE setup_
@@ -309,7 +321,7 @@ Convention over configuration, while staying wholly configurable. _No more boile
309
321
  - 🚗 **Auto Imports** _your components & functions, including date, string, array, & object helpers_
310
322
  - ⏩ **Code Snippets** _goodbye to the boilerplate code—thank you Sarah Drasner_
311
323
  - 🔤 **Spell Checker** _be notified once there are typos_
312
- - 🛠️ **Essential Utilities** _powers at your fingertips. Collections, VueUse, and more_
324
+ - 🛠️ **Essential Utilities** _powers at your fingertips. Collections, STX composables, and more_
313
325
  - 👥 **Team Management** _manage your team & their permissions_
314
326
  - 🧪 **Streamlined Testing** _unit & e2e tests powered by Bun, Vitest & Playwright_
315
327
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stacksjs/i18n",
3
- "version": "0.70.161",
3
+ "version": "0.70.163",
4
4
  "description": "Internationalization system for Stacks.js applications",
5
5
  "type": "module",
6
6
  "sideEffects": false,
@@ -40,7 +40,7 @@
40
40
  "@stacksjs/ts-i18n": "^0.1.9"
41
41
  },
42
42
  "devDependencies": {
43
- "@stacksjs/development": "0.70.161"
43
+ "@stacksjs/development": "0.70.163"
44
44
  },
45
45
  "publishConfig": {
46
46
  "exports": {