@danielx/civet 0.11.3 → 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 +8 -0
- package/dist/browser.js +137 -71
- package/dist/main.js +205 -132
- package/dist/main.mjs +205 -132
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,14 @@ 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
|
+
|
|
7
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))
|
|
8
16
|
* Fix REPL continuation prompt to `...`, clarifying indentation [[#1843](https://github.com/DanielXMoore/Civet/pull/1843)]
|
|
9
17
|
* Don't treat `package.js/civet` as config [[#1844](https://github.com/DanielXMoore/Civet/pull/1844)]
|