@danielx/civet 0.11.10 → 0.11.11

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 CHANGED
@@ -4,6 +4,33 @@ 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.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
+ * Dev: typecheck-diff in CI [[#2083](https://github.com/DanielXMoore/Civet/pull/2083)]
9
+ * Add comptime Float16Array support [[#2084](https://github.com/DanielXMoore/Civet/pull/2084)]
10
+ * tree-sitter: fix triple-quote and triple-backtick parsing [[#2081](https://github.com/DanielXMoore/Civet/pull/2081)]
11
+ * LSP: add `--version` / `--help` flags, default to `--stdio` [[#2082](https://github.com/DanielXMoore/Civet/pull/2082)]
12
+ * LSP: improve compatibility by renaming duplicate named groups in import-path regex [[#2086](https://github.com/DanielXMoore/Civet/pull/2086)]
13
+ * CI typecheck: rebuild base in its own worktree [[#2085](https://github.com/DanielXMoore/Civet/pull/2085)]
14
+ * CI: Clarify typecheck-diff output [[#2087](https://github.com/DanielXMoore/Civet/pull/2087)]
15
+ * Dev: Reduce type errors by 50 [[#2088](https://github.com/DanielXMoore/Civet/pull/2088)]
16
+ * Dev: Update @danielx/hera 0.9.2 → 0.9.7 [[#2038](https://github.com/DanielXMoore/Civet/pull/2038)]
17
+ * Dev: Remove legacy .civet/hera-plugin.mjs [[#2089](https://github.com/DanielXMoore/Civet/pull/2089)]
18
+ * CLI: parallelize compile loop [[#2080](https://github.com/DanielXMoore/Civet/pull/2080)]
19
+ * Dev: Property children false-leak + literal-leaf type tags [[#2090](https://github.com/DanielXMoore/Civet/pull/2090)]
20
+ * fix: `try … catch` in expression position crashes insertReturn (#2093) [[#2095](https://github.com/DanielXMoore/Civet/pull/2095)]
21
+ * Grammar: align `const`/`let`/`var` and template-expression scopes with JS [[#2094](https://github.com/DanielXMoore/Civet/pull/2094)]
22
+ * Dev: Exclude lsp/zed/grammars from coverage scans [[#2096](https://github.com/DanielXMoore/Civet/pull/2096)]
23
+ * Add -w/--watch flag for continuous compilation [[#2048](https://github.com/DanielXMoore/Civet/pull/2048)]
24
+ * Sublime Text: add `lsp/sublime/` dev-install package [[#2097](https://github.com/DanielXMoore/Civet/pull/2097)]
25
+ * Support destructuring-style imports with rest and nested patterns [[#2092](https://github.com/DanielXMoore/Civet/pull/2092)]
26
+ * Drop results accumulator from postfix-for when value is discarded [[#2098](https://github.com/DanielXMoore/Civet/pull/2098)]
27
+ * Fix unicode identifiers in shorthand object forms [[#2102](https://github.com/DanielXMoore/Civet/pull/2102)]
28
+ * Fix BigInt ranges as values and in exclusive for-of forms [[#2103](https://github.com/DanielXMoore/Civet/pull/2103)]
29
+ * Add esBraceBlock flag so `=> {…}` is a block, not an object [[#2104](https://github.com/DanielXMoore/Civet/pull/2104)]
30
+ * feat: support declaration types in coffeeForLoops (#583) [[#2101](https://github.com/DanielXMoore/Civet/pull/2101)]
31
+ * Add `array[?]` shorthand for random element selection [[#2105](https://github.com/DanielXMoore/Civet/pull/2105)]
32
+ * Coffee classes: `name: value` colon form becomes prototype assignment [[#2107](https://github.com/DanielXMoore/Civet/pull/2107)]
33
+
7
34
  ## 0.11.10 (2026-05-18, [diff](https://github.com/DanielXMoore/Civet/compare/v0.11.9...v0.11.10), [commits](https://github.com/DanielXMoore/Civet/commits/v0.11.10))
8
35
  * Coverage: re-enable `--parallel` for test runs [[#2064](https://github.com/DanielXMoore/Civet/pull/2064)]
9
36
  * LSP: implement workspace/symbol [[#2049](https://github.com/DanielXMoore/Civet/pull/2049)]
@@ -24,7 +24,7 @@ __export(babel_plugin_exports, {
24
24
  });
25
25
  module.exports = __toCommonJS(babel_plugin_exports);
26
26
  var import_main = require("./main.js");
27
- function babel_plugin_default(api, civetOptions) {
27
+ function babel_plugin_default(_api, civetOptions = {}) {
28
28
  return {
29
29
  parserOverride(code, opts, parse) {
30
30
  let src;
@@ -1,6 +1,6 @@
1
1
  // source/babel-plugin.civet
2
2
  import { compile } from "./main.mjs";
3
- function babel_plugin_default(api, civetOptions) {
3
+ function babel_plugin_default(_api, civetOptions = {}) {
4
4
  return {
5
5
  parserOverride(code, opts, parse) {
6
6
  let src;