@danielx/civet 0.8.11 → 0.8.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 +19 -0
- package/dist/browser.js +2933 -2710
- package/dist/main.js +2934 -2711
- package/dist/main.mjs +2934 -2711
- package/dist/types.d.ts +13 -1
- package/dist/unplugin/unplugin.js +156 -112
- package/dist/unplugin/unplugin.mjs +157 -113
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,25 @@ 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.8.13 (2024-11-05, [diff](https://github.com/DanielXMoore/Civet/compare/v0.8.12...v0.8.13), [commits](https://github.com/DanielXMoore/Civet/commits/v0.8.13))
|
|
8
|
+
* Playground copy button for large text fragments [[#1569](https://github.com/DanielXMoore/Civet/pull/1569)]
|
|
9
|
+
* Fix unplugin `typecheck`: source mapping and `rewriteCivetImports` combination [[#1571](https://github.com/DanielXMoore/Civet/pull/1571)]
|
|
10
|
+
* Playground buttons to copy input or output [[#1572](https://github.com/DanielXMoore/Civet/pull/1572)]
|
|
11
|
+
* Fix modulo access with placeholders: `x[& %]` [[#1573](https://github.com/DanielXMoore/Civet/pull/1573)]
|
|
12
|
+
* Fix parenthesized `&` followed by type postfix [[#1574](https://github.com/DanielXMoore/Civet/pull/1574)]
|
|
13
|
+
* Playground TypeScript toggle [[#1577](https://github.com/DanielXMoore/Civet/pull/1577)]
|
|
14
|
+
* Fix parenthesized `&` followed by binary op [[#1576](https://github.com/DanielXMoore/Civet/pull/1576)]
|
|
15
|
+
* Object and array literals via `{}` and `[]` followed by items [[#1575](https://github.com/DanielXMoore/Civet/pull/1575)]
|
|
16
|
+
|
|
17
|
+
## 0.8.12 (2024-11-03, [diff](https://github.com/DanielXMoore/Civet/compare/v0.8.11...v0.8.12), [commits](https://github.com/DanielXMoore/Civet/commits/v0.8.12))
|
|
18
|
+
* Fix REPL support for `ref`s created by Civet [[#1553](https://github.com/DanielXMoore/Civet/pull/1553)]
|
|
19
|
+
* `array[i%]` modulo index shorthand [[#1554](https://github.com/DanielXMoore/Civet/pull/1554)]
|
|
20
|
+
* Bun docs: improve getting started guidance [[#1555](https://github.com/DanielXMoore/Civet/pull/1555)]
|
|
21
|
+
* Avoid duplicate calls in relation chains and `@` bind shorthand via refs [[#1556](https://github.com/DanielXMoore/Civet/pull/1556)]
|
|
22
|
+
* LSP completions show details and documentation [[#1561](https://github.com/DanielXMoore/Civet/pull/1561)]
|
|
23
|
+
* Fix `for key: T, value in` loop to define `value` using typed `key` [[#1564](https://github.com/DanielXMoore/Civet/pull/1564)]
|
|
24
|
+
* Lone `finally` block provides cleanup for rest of block [[#1566](https://github.com/DanielXMoore/Civet/pull/1566)]
|
|
25
|
+
|
|
7
26
|
## 0.8.11 (2024-10-30, [diff](https://github.com/DanielXMoore/Civet/compare/v0.8.10...v0.8.11), [commits](https://github.com/DanielXMoore/Civet/commits/v0.8.11))
|
|
8
27
|
* Placeholders lift through reverse slice operators [[#1537](https://github.com/DanielXMoore/Civet/pull/1537)]
|
|
9
28
|
* Playground `comptime` restarts playground worker and resets toggle after editing [[#1538](https://github.com/DanielXMoore/Civet/pull/1538)]
|