@sylphx/flow 2.14.0 → 2.14.1
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/CHANGELOG.md +14 -0
- package/assets/slash-commands/review-i18n.md +9 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @sylphx/flow
|
|
2
2
|
|
|
3
|
+
## 2.14.1 (2025-12-17)
|
|
4
|
+
|
|
5
|
+
### Documentation
|
|
6
|
+
|
|
7
|
+
- Add bundle constraints guidance for next-intl in review-i18n command
|
|
8
|
+
|
|
9
|
+
### 📚 Documentation
|
|
10
|
+
|
|
11
|
+
- **review-i18n:** add bundle constraints for next-intl ([c16d6c0](https://github.com/SylphxAI/flow/commit/c16d6c03284d2215d0e29cb98500d71f04fa01a7))
|
|
12
|
+
|
|
13
|
+
### 🔧 Chores
|
|
14
|
+
|
|
15
|
+
- trigger release workflow ([ee60f39](https://github.com/SylphxAI/flow/commit/ee60f3967f07a576f79ffe926770fb36414d78c7))
|
|
16
|
+
|
|
3
17
|
## 2.14.0 (2025-12-17)
|
|
4
18
|
|
|
5
19
|
### ✨ Features
|
|
@@ -24,6 +24,7 @@ agent: coder
|
|
|
24
24
|
* `/en/*` must not exist (permanently redirect to non-prefixed)
|
|
25
25
|
* Missing translation keys must fail build
|
|
26
26
|
* No hardcoded user-facing strings outside localization
|
|
27
|
+
* Translation bundles must be split by namespace or route (no monolithic language files)
|
|
27
28
|
|
|
28
29
|
## Context
|
|
29
30
|
|
|
@@ -39,3 +40,11 @@ Consider: dates, numbers, currency, pluralization, text direction, cultural norm
|
|
|
39
40
|
* How painful is the translation workflow for adding new strings?
|
|
40
41
|
* What locales are we missing that represent real market opportunity?
|
|
41
42
|
* Where do we fall back to English in ways users would notice?
|
|
43
|
+
* How large are the translation bundles, and what's being sent to the client?
|
|
44
|
+
|
|
45
|
+
## Bundle Constraints
|
|
46
|
+
|
|
47
|
+
* No monolithic language files — split by namespace (`common`, `auth`, `dashboard`, etc.)
|
|
48
|
+
* Server Components for translations wherever possible — client bundles must not include translations that could stay on server
|
|
49
|
+
* Each route should load only its required namespaces
|
|
50
|
+
* Measure client bundle size impact of translations
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sylphx/flow",
|
|
3
|
-
"version": "2.14.
|
|
3
|
+
"version": "2.14.1",
|
|
4
4
|
"description": "One CLI to rule them all. Unified orchestration layer for Claude Code, OpenCode, Cursor and all AI development tools. Auto-detection, auto-installation, auto-upgrade.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|