| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| lingo.dev@0.135.0 source code.tar.gz | 2026-05-18 | 11.3 MB | |
| lingo.dev@0.135.0 source code.zip | 2026-05-18 | 11.7 MB | |
| README.md | 2026-05-18 | 1.3 kB | |
| Totals: 3 Items | 23.0 MB | 0 | |
Minor Changes
-
#2089
0106b48Thanks @cherkanovart! - Support recursive glob patterns (**) in bucketinclude/exclude.Patterns like
config/locales/**/[locale].ymlorsrc/**/[locale]/strings/*.jsonnow match files at any depth, so you no longer need to enumerate every nesting level. The previous restriction that rejected any pattern containing**has been removed.Two safety nets ship with this change, both scoped to patterns that actually use
**:- For
**patterns only,node_modules,.git,dist,build,.next, and.turboare excluded by default so a broad pattern like**/[locale].jsondoes not descend into vendored or build trees. Existing patterns without**keep the previous traversal behavior exactly as before. Add your ownexcludeentries on top as needed. - When a matched file cannot be unambiguously mapped back to the
[locale]placeholder (for example, a pattern with multiple wildcards around[locale]that admits more than one valid restoration), the CLI now throws a clear error instead of silently returning a malformed path.
- For