@stacksjs/i18n 0.74.32 → 0.74.33
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 +11 -4
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -15,9 +15,14 @@
|
|
|
15
15
|
|
|
16
16
|
Stacks is a rapid development framework, where the goal is to _help you_ create & maintain frontends, backends, and clouds—without having to worry about the boilerplate. _An all-in-one toolkit that meets all your full stack needs._
|
|
17
17
|
|
|
18
|
-
|
|
18
|
+
<a href="https://stacksjs.com/docs/diagrams/stacks-runtime">
|
|
19
|
+
<picture>
|
|
20
|
+
<source media="(prefers-color-scheme: dark)" srcset="./docs/public/diagrams/stacks-runtime/dark.png">
|
|
21
|
+
<img alt="Stacks runtime architecture: developer to Buddy CLI to Stacks Cloud, and web or desktop client through rpx to stx, router, actions, ORM, and database" src="./docs/public/diagrams/stacks-runtime/light.png">
|
|
22
|
+
</picture>
|
|
23
|
+
</a>
|
|
19
24
|
|
|
20
|
-
|
|
25
|
+
_[Open the interactive diagram](https://stacksjs.com/docs/diagrams/stacks-runtime) for a theme toggle and SVG, PNG, JPEG, and WebP exports._
|
|
21
26
|
|
|
22
27
|
- Web & Desktop Applications _(including system tray apps)_
|
|
23
28
|
- Serverless & Traditional APIs
|
|
@@ -61,6 +66,8 @@ panx @stacksjs/buddy new my-project
|
|
|
61
66
|
|
|
62
67
|
Pantry executes Buddy in an isolated environment and provisions the generated project's declared toolchain during setup.
|
|
63
68
|
|
|
69
|
+
From there: the [documentation](https://stacksjs.com/docs/guide/intro), the [Buddy command reference](https://stacksjs.com/docs/guide/buddy/commands), and the [agent skills](https://stacksjs.com/docs/skills) that teach Claude Code, Codex, and Cursor how each subsystem works.
|
|
70
|
+
|
|
64
71
|
For frontend experiments in the browser, open the live stx starter:
|
|
65
72
|
|
|
66
73
|
[](https://stackblitz.com/fork/github/stacksjs/stackblitz?title=Stacks%20Starter)
|
|
@@ -78,7 +85,7 @@ buddy make:action UpdateUser # scaffold a new Action (also: model, view, job,
|
|
|
78
85
|
buddy --help # show every available command
|
|
79
86
|
```
|
|
80
87
|
|
|
81
|
-
For the full command reference, see the collapsible section below or the [Buddy CLI documentation](https://stacksjs.com/docs/
|
|
88
|
+
For the full command reference, see the collapsible section below or the [Buddy CLI documentation](https://stacksjs.com/docs/guide/buddy/commands).
|
|
82
89
|
|
|
83
90
|
<details>
|
|
84
91
|
<summary>View the complete Buddy Toolkit</summary>
|
|
@@ -245,7 +252,7 @@ buddy test:types # runs typecheck
|
|
|
245
252
|
|
|
246
253
|
</details>
|
|
247
254
|
|
|
248
|
-
Read more about the Buddy CLI in the [official docs](https://stacksjs.com/docs/
|
|
255
|
+
Read more about the Buddy CLI in the [official docs](https://stacksjs.com/docs/guide/buddy/commands): every command, every flag, every prompt explained.
|
|
249
256
|
|
|
250
257
|
## Features
|
|
251
258
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stacksjs/i18n",
|
|
3
|
-
"version": "0.74.
|
|
3
|
+
"version": "0.74.33",
|
|
4
4
|
"description": "Internationalization system for Stacks.js applications",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -36,13 +36,13 @@
|
|
|
36
36
|
"prepublishOnly": "bun run build"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@stacksjs/config": "0.74.
|
|
40
|
-
"@stacksjs/logging": "0.74.
|
|
41
|
-
"@stacksjs/path": "0.74.
|
|
39
|
+
"@stacksjs/config": "0.74.33",
|
|
40
|
+
"@stacksjs/logging": "0.74.33",
|
|
41
|
+
"@stacksjs/path": "0.74.33",
|
|
42
42
|
"@stacksjs/ts-i18n": "^0.1.9"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
|
-
"@stacksjs/development": "0.74.
|
|
45
|
+
"@stacksjs/development": "0.74.33"
|
|
46
46
|
},
|
|
47
47
|
"publishConfig": {
|
|
48
48
|
"exports": {
|