@danielx/civet 0.11.2 → 0.11.4

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,30 @@ 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.4 (2026-03-07, [diff](https://github.com/DanielXMoore/Civet/compare/v0.11.3...v0.11.4), [commits](https://github.com/DanielXMoore/Civet/commits/v0.11.4))
8
+ * LSP file completions [[#1854](https://github.com/DanielXMoore/Civet/pull/1854)]
9
+ * LSP file completion from empty `import/from` via robust parsing; restrict to single-line module names [[#1855](https://github.com/DanielXMoore/Civet/pull/1855)]
10
+ * BREAKING CHANGE: `import`s must now be properly indented, and module names can no longer have actual newlines in them.
11
+ * LSP handling of TypeScript crashing [[#1857](https://github.com/DanielXMoore/Civet/pull/1857)]
12
+ * LSP completion at end of file [[#1856](https://github.com/DanielXMoore/Civet/pull/1856)]
13
+ * LSP completions from `foo.` via robust parsing [[#1560](https://github.com/DanielXMoore/Civet/pull/1560)]
14
+
15
+ ## 0.11.3 (2026-02-25, [diff](https://github.com/DanielXMoore/Civet/compare/v0.11.2...v0.11.3), [commits](https://github.com/DanielXMoore/Civet/commits/v0.11.3))
16
+ * Fix REPL continuation prompt to `...`, clarifying indentation [[#1843](https://github.com/DanielXMoore/Civet/pull/1843)]
17
+ * Don't treat `package.js/civet` as config [[#1844](https://github.com/DanielXMoore/Civet/pull/1844)]
18
+ * BREAKING CHANGE: Civet can no longer be configured from a default export of `package.js` or `package.civet`
19
+ * Make typescript an optional peer dep, bundle @typescript/vfs [[#1842](https://github.com/DanielXMoore/Civet/pull/1842)]
20
+ * Tests for CLI output filename generation [[#1847](https://github.com/DanielXMoore/Civet/pull/1847)]
21
+ * `>` closes type arguments; forbid binary `x> y` [[#1848](https://github.com/DanielXMoore/Civet/pull/1848)]
22
+ * BREAKING CHANGE: `x> y` no longer compares; use `x>y` or `x > y`
23
+ * LSP: ensure immediate updates for opened dependent files on change [[#1779](https://github.com/DanielXMoore/Civet/pull/1779)]
24
+ * Spreads and multiple items in parenthesized postfix loops, postfixes in declarations [[#1849](https://github.com/DanielXMoore/Civet/pull/1849)]
25
+ * Syntax highlighting for import/export shorthands and `for` keywords [[#1580](https://github.com/DanielXMoore/Civet/pull/1580)]
26
+ * Implicit `async`, `AutoPromise`, `function*` propagate to overloads [[#1852](https://github.com/DanielXMoore/Civet/pull/1852)]
27
+ * Postfix support in parenthesized or indented function arguments [[#1853](https://github.com/DanielXMoore/Civet/pull/1853)]
28
+ * BREAKING CHANGE: Function application with a postfix on the last indented argument now applies the postfix to the argument, not the whole function application.
29
+ * Website playground: tab key insert tabs or indents, escape key defocuses [[#1626](https://github.com/DanielXMoore/Civet/pull/1626)]
30
+
7
31
  ## 0.11.2 (2026-01-21, [diff](https://github.com/DanielXMoore/Civet/compare/v0.11.1...v0.11.2), [commits](https://github.com/DanielXMoore/Civet/commits/v0.11.2))
8
32
  * VSCode extension supports rename-symbol [[#1823](https://github.com/DanielXMoore/Civet/pull/1823)]
9
33
  * Fix scoping of unwrapped statement expressions [[#1833](https://github.com/DanielXMoore/Civet/pull/1833)]
package/README.md CHANGED
@@ -46,6 +46,9 @@ civet < source.civet > output.ts
46
46
  civet source.civet ...args...
47
47
  # Execute a .civet source file in node
48
48
  node --import @danielx/civet/register source.civet
49
+ # Type check entire project, which requires TypeScript installed
50
+ npm install -g typescript
51
+ civet --typecheck
49
52
  ```
50
53
 
51
54
  ![image](https://user-images.githubusercontent.com/18894/184558519-b675a903-7490-43ba-883e-0d8addacd4b9.png)