@danielx/civet 0.8.14 → 0.8.16
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 +22 -0
- package/README.md +1 -1
- package/dist/browser.js +936 -697
- package/dist/config.js +1 -7253
- package/dist/config.mjs +1 -7276
- package/dist/main.js +936 -697
- package/dist/main.mjs +936 -697
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,28 @@ 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.16 (2024-11-22, [diff](https://github.com/DanielXMoore/Civet/compare/v0.8.15...v0.8.16), [commits](https://github.com/DanielXMoore/Civet/commits/v0.8.16))
|
|
8
|
+
* `for join` reduction to concatenate strings [[#1604](https://github.com/DanielXMoore/Civet/pull/1604)]
|
|
9
|
+
* Numeric object keys in pattern matching [[#1608](https://github.com/DanielXMoore/Civet/pull/1608)]
|
|
10
|
+
* Fix trailing member/call behavior [[#1609](https://github.com/DanielXMoore/Civet/pull/1609)]
|
|
11
|
+
* Fix complex property globs [[#1610](https://github.com/DanielXMoore/Civet/pull/1610)]
|
|
12
|
+
* Allow postfix in indented `if` conditions [[#1612](https://github.com/DanielXMoore/Civet/pull/1612)]
|
|
13
|
+
* `for` reduction implicit body can destructure, fix implicitly returned patterns in some cases [[#1613](https://github.com/DanielXMoore/Civet/pull/1613)]
|
|
14
|
+
* Fix fallthrough in implicitly returned switch with semicolon, improve `hasExit` heuristic [[#1615](https://github.com/DanielXMoore/Civet/pull/1615)]
|
|
15
|
+
* Type postfix `?` and `!` work in long postfix sequence [[#1617](https://github.com/DanielXMoore/Civet/pull/1617)]
|
|
16
|
+
* Playground shows IIFE failures only when clicking Run [[#1618](https://github.com/DanielXMoore/Civet/pull/1618)]
|
|
17
|
+
* Fix automatic `Promise` wrapping of async return types [[#1619](https://github.com/DanielXMoore/Civet/pull/1619)]
|
|
18
|
+
|
|
19
|
+
## 0.8.15 (2024-11-12, [diff](https://github.com/DanielXMoore/Civet/compare/v0.8.14...v0.8.15), [commits](https://github.com/DanielXMoore/Civet/commits/v0.8.15))
|
|
20
|
+
* Fix typo in Coffeescript comparison [[#1589](https://github.com/DanielXMoore/Civet/pull/1589)]
|
|
21
|
+
* Fix range `for` loop with complex left-hand side [[#1592](https://github.com/DanielXMoore/Civet/pull/1592)]
|
|
22
|
+
* Type's postfix `if` must be on the same line [[#1591](https://github.com/DanielXMoore/Civet/pull/1591)]
|
|
23
|
+
* Fix missing parentheses in one-line `if` condition [[#1595](https://github.com/DanielXMoore/Civet/pull/1595)]
|
|
24
|
+
* LSP: fix autocompletion details error message [[#1596](https://github.com/DanielXMoore/Civet/pull/1596)]
|
|
25
|
+
* Fix reduction inside conditions, and other subtle aliasing issues [[#1598](https://github.com/DanielXMoore/Civet/pull/1598)]
|
|
26
|
+
* Track indentation of trailing member/call expressions [[#1599](https://github.com/DanielXMoore/Civet/pull/1599)]
|
|
27
|
+
* BREAKING CHANGE: A chain of trailing member accesses must now be consistently indented.
|
|
28
|
+
|
|
7
29
|
## 0.8.14 (2024-11-07, [diff](https://github.com/DanielXMoore/Civet/compare/v0.8.13...v0.8.14), [commits](https://github.com/DanielXMoore/Civet/commits/v0.8.14))
|
|
8
30
|
* Syntax highlighting: fix leading `_` being treated as a number [[#1578](https://github.com/DanielXMoore/Civet/pull/1578)]
|
|
9
31
|
* Scientific numeric literals take priority over access [[#1579](https://github.com/DanielXMoore/Civet/pull/1579)]
|
package/README.md
CHANGED
|
@@ -28,7 +28,7 @@ The modern way to write TypeScript.
|
|
|
28
28
|
[Gulp](integration/gulp),
|
|
29
29
|
[Bun](source/bun-civet.civet),
|
|
30
30
|
[`<script>` tag](https://github.com/DanielXMoore/Civet/tree/main/integration/script)
|
|
31
|
-
- Starter templates for [Solid](https://github.com/orenelbaum/solid-civet-template) and [Solid Start](https://github.com/orenelbaum/solid-start-civet-template)
|
|
31
|
+
- Starter templates for [Solid](https://github.com/edemaine/civet-solid-vite-template) ([older](https://github.com/orenelbaum/solid-civet-template)) and [Solid Start](https://github.com/orenelbaum/solid-start-civet-template)
|
|
32
32
|
|
|
33
33
|
Quickstart Guide
|
|
34
34
|
---
|