@danielx/civet 0.11.11 → 0.11.13
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 +30 -0
- package/dist/browser.js +466 -209
- package/dist/browser.min.js +1 -1
- package/dist/main.js +718 -311
- package/dist/main.mjs +718 -311
- package/dist/ts-service/index.js +232 -178
- package/dist/ts-service/index.js.map +4 -4
- package/dist/ts-service/index.mjs +228 -174
- package/dist/ts-service/index.mjs.map +4 -4
- package/dist/types.d.ts +9 -0
- package/package.json +6 -5
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,36 @@ This changelog is generated automatically by [`build/changelog.civet`](build/cha
|
|
|
4
4
|
For each version of Civet, it lists and links to all incorporated PRs,
|
|
5
5
|
as well as a full diff and commit list.
|
|
6
6
|
|
|
7
|
+
## 0.11.13 (2026-06-04, [diff](https://github.com/DanielXMoore/Civet/compare/v0.11.12...v0.11.13), [commits](https://github.com/DanielXMoore/Civet/commits/v0.11.13))
|
|
8
|
+
* LSP: Don't indent after keyword property inside Object [[#2129](https://github.com/DanielXMoore/Civet/pull/2129)]
|
|
9
|
+
* Move ts-service unit tests to root; gate coverage from single compile path [[#2130](https://github.com/DanielXMoore/Civet/pull/2130)]
|
|
10
|
+
* Drop type-only named imports entirely in JS mode [[#2126](https://github.com/DanielXMoore/Civet/pull/2126)]
|
|
11
|
+
* Fix postfix if/unless followed by ; emitting invalid JS [[#2132](https://github.com/DanielXMoore/Civet/pull/2132)]
|
|
12
|
+
* docs: coverage mechanics guide for agents [[#2135](https://github.com/DanielXMoore/Civet/pull/2135)]
|
|
13
|
+
* coverage: exclude sibling git worktrees from the gate [[#2136](https://github.com/DanielXMoore/Civet/pull/2136)]
|
|
14
|
+
* LSP: pull-model diagnostics (`textDocument/diagnostic`) [[#2133](https://github.com/DanielXMoore/Civet/pull/2133)]
|
|
15
|
+
* LSP: Hera-aware grammar-level features for `.hera` [[#2127](https://github.com/DanielXMoore/Civet/pull/2127)]
|
|
16
|
+
* LSP: grammar-level folding and selection ranges for `.hera` [[#2138](https://github.com/DanielXMoore/Civet/pull/2138)]
|
|
17
|
+
* feat: infer @-param types from class field declarations [[#2139](https://github.com/DanielXMoore/Civet/pull/2139)]
|
|
18
|
+
* feat: allow yield in fat-arrow functions (#2140) [[#2143](https://github.com/DanielXMoore/Civet/pull/2143)]
|
|
19
|
+
* esCompat: full ES-superset for statement-position braces and `=> expr;` [[#2142](https://github.com/DanielXMoore/Civet/pull/2142)]
|
|
20
|
+
* Keep trailing comments inside indented blocks [[#2120](https://github.com/DanielXMoore/Civet/pull/2120)]
|
|
21
|
+
|
|
22
|
+
## 0.11.12 (2026-05-26, [diff](https://github.com/DanielXMoore/Civet/compare/v0.11.11...v0.11.12), [commits](https://github.com/DanielXMoore/Civet/commits/v0.11.12))
|
|
23
|
+
* Fix Sublime support via JSON to XML conversion [[#2111](https://github.com/DanielXMoore/Civet/pull/2111)]
|
|
24
|
+
* Fix crash on optional-chain LHS with custom `oper=` (#2109) [[#2113](https://github.com/DanielXMoore/Civet/pull/2113)]
|
|
25
|
+
* Modernize docs for Sublime LSP setup [[#2116](https://github.com/DanielXMoore/Civet/pull/2116)]
|
|
26
|
+
* Omit anonymous rest from destructure when unreferenced [[#2114](https://github.com/DanielXMoore/Civet/pull/2114)]
|
|
27
|
+
* LSP: accept inline tsConfig in civetconfig (#379) [[#2108](https://github.com/DanielXMoore/Civet/pull/2108)]
|
|
28
|
+
* Isolate CLI --typecheck tests from the project tsconfig [[#2121](https://github.com/DanielXMoore/Civet/pull/2121)]
|
|
29
|
+
* Fix implicit extension and directory resolution when typechecking [[#2123](https://github.com/DanielXMoore/Civet/pull/2123)]
|
|
30
|
+
* Docs: Wrap top-level yield in a generator before Prettier in the playground [[#2122](https://github.com/DanielXMoore/Civet/pull/2122)]
|
|
31
|
+
* Switch declaration: bind directly to user-named identifier (#840) [[#2118](https://github.com/DanielXMoore/Civet/pull/2118)]
|
|
32
|
+
* Polyfill private-field glob assignment (#966) [[#2117](https://github.com/DanielXMoore/Civet/pull/2117)]
|
|
33
|
+
* Fix module resolution: TypeScript `paths`, old TS `resolveModuleNames` [[#2124](https://github.com/DanielXMoore/Civet/pull/2124)]
|
|
34
|
+
* Cache side-effectful index in named-function assignment [[#2115](https://github.com/DanielXMoore/Civet/pull/2115)]
|
|
35
|
+
* Grammar cleanup; `////`+ is a comment; fix empty heregex [[#2125](https://github.com/DanielXMoore/Civet/pull/2125)]
|
|
36
|
+
|
|
7
37
|
## 0.11.11 (2026-05-24, [diff](https://github.com/DanielXMoore/Civet/compare/v0.11.10...v0.11.11), [commits](https://github.com/DanielXMoore/Civet/commits/v0.11.11))
|
|
8
38
|
* Dev: typecheck-diff in CI [[#2083](https://github.com/DanielXMoore/Civet/pull/2083)]
|
|
9
39
|
* Add comptime Float16Array support [[#2084](https://github.com/DanielXMoore/Civet/pull/2084)]
|