@danielx/civet 0.7.33 → 0.7.35
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 +17 -0
- package/dist/browser.js +467 -227
- package/dist/main.js +467 -227
- package/dist/main.mjs +467 -227
- package/dist/types.d.ts +1 -0
- package/dist/unplugin/unplugin.js +17 -4
- package/dist/unplugin/unplugin.mjs +17 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,23 @@ 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.7.35 (2024-10-08, [diff](https://github.com/DanielXMoore/Civet/compare/v0.7.34...v0.7.35), [commits](https://github.com/DanielXMoore/Civet/commits/v0.7.35))
|
|
8
|
+
* Stop implicitly returning final value from generators [[#1430](https://github.com/DanielXMoore/Civet/pull/1430)]
|
|
9
|
+
* Prevent stray `await` on one line from pipeline expansion [[#1431](https://github.com/DanielXMoore/Civet/pull/1431)]
|
|
10
|
+
* `T!` type shorthand for `NonNullable<T>` [[#1434](https://github.com/DanielXMoore/Civet/pull/1434)]
|
|
11
|
+
* `await` with indented argument, or multiple arguments as array [[#1433](https://github.com/DanielXMoore/Civet/pull/1433)]
|
|
12
|
+
* Typed `for` loops generate valid TypeScript [[#1435](https://github.com/DanielXMoore/Civet/pull/1435)]
|
|
13
|
+
* `await` with array literal awaits the items [[#1437](https://github.com/DanielXMoore/Civet/pull/1437)]
|
|
14
|
+
* CoffeeScript `do` allows unary operators beforehand, and handles nested body better [[#1436](https://github.com/DanielXMoore/Civet/pull/1436)]
|
|
15
|
+
|
|
16
|
+
## 0.7.34 (2024-10-06, [diff](https://github.com/DanielXMoore/Civet/compare/v0.7.33...v0.7.34), [commits](https://github.com/DanielXMoore/Civet/commits/v0.7.34))
|
|
17
|
+
* Use new Civet icon in VSCode extension [[#1420](https://github.com/DanielXMoore/Civet/pull/1420)]
|
|
18
|
+
* `"civet globals"` directive to prevent some auto declarations [[#1423](https://github.com/DanielXMoore/Civet/pull/1423)]
|
|
19
|
+
* Fix arrow type with `?` postfix [[#1425](https://github.com/DanielXMoore/Civet/pull/1425)]
|
|
20
|
+
* Enable `worker.civet?worker` import in Vite [[#1426](https://github.com/DanielXMoore/Civet/pull/1426)]
|
|
21
|
+
* Fix missing semicolon in if/unless followed by else [[#1428](https://github.com/DanielXMoore/Civet/pull/1428)]
|
|
22
|
+
* Support `export default` in `declare` blocks [[#1427](https://github.com/DanielXMoore/Civet/pull/1427)]
|
|
23
|
+
|
|
7
24
|
## 0.7.33 (2024-10-05, [diff](https://github.com/DanielXMoore/Civet/compare/v0.7.32...v0.7.33), [commits](https://github.com/DanielXMoore/Civet/commits/v0.7.33))
|
|
8
25
|
* VSCode plugin ignores CoffeeScript files [[#1409](https://github.com/DanielXMoore/Civet/pull/1409)]
|
|
9
26
|
* Add syntax highlighting support for /d, /s and /v RegExp flags [[#1413](https://github.com/DanielXMoore/Civet/pull/1413)]
|