@danielx/civet 0.9.7 → 0.10.1
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 +18 -0
- package/README.md +1 -1
- package/dist/browser.js +141 -106
- package/dist/main.js +172 -123
- package/dist/main.mjs +172 -123
- package/dist/unplugin/farm.d.ts +2 -0
- package/dist/unplugin/farm.js +36 -0
- package/dist/unplugin/farm.mjs +6 -0
- package/dist/unplugin/rolldown.d.ts +2 -0
- package/dist/unplugin/rolldown.js +36 -0
- package/dist/unplugin/rolldown.mjs +6 -0
- package/dist/unplugin/rspack.d.ts +2 -0
- package/dist/unplugin/rspack.js +36 -0
- package/dist/unplugin/rspack.mjs +6 -0
- package/dist/unplugin/unplugin.js +36 -18
- package/dist/unplugin/unplugin.mjs +36 -18
- package/package.json +32 -17
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,24 @@ 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.10.1 (2025-03-22, [diff](https://github.com/DanielXMoore/Civet/compare/v0.10.0...v0.10.1), [commits](https://github.com/DanielXMoore/Civet/commits/v0.10.1))
|
|
8
|
+
* More general expressions in indented forms of `implements` and `with` [[#1720](https://github.com/DanielXMoore/Civet/pull/1720)]
|
|
9
|
+
* Allow `>code` to continue an implicit JSX fragment [[#1721](https://github.com/DanielXMoore/Civet/pull/1721)]
|
|
10
|
+
* Fix hot reload via unplugin in NextJS, fix sourcemaps with `ts: "preserve"` [[#1722](https://github.com/DanielXMoore/Civet/pull/1722)]
|
|
11
|
+
* Farm and Rolldown bundler support [[#1723](https://github.com/DanielXMoore/Civet/pull/1723)]
|
|
12
|
+
|
|
13
|
+
## 0.10.0 (2025-03-17, [diff](https://github.com/DanielXMoore/Civet/compare/v0.9.7...v0.10.0), [commits](https://github.com/DanielXMoore/Civet/commits/v0.10.0))
|
|
14
|
+
* Document `class with A, B` mixins [[#1703](https://github.com/DanielXMoore/Civet/pull/1703)]
|
|
15
|
+
* Document how to use VSCode plugin [[#1704](https://github.com/DanielXMoore/Civet/pull/1704)]
|
|
16
|
+
* Allow comment before bulleted array [[#1713](https://github.com/DanielXMoore/Civet/pull/1713)]
|
|
17
|
+
* Fix exit detection for `switch` with fallthrough [[#1714](https://github.com/DanielXMoore/Civet/pull/1714)]
|
|
18
|
+
* Require `from` in backwards `import`/`export` to fix ambiguity with dynamic `import` [[#1715](https://github.com/DanielXMoore/Civet/pull/1715)]
|
|
19
|
+
* BREAKING CHANGE: `module import spec` needs to written as `from module import spec` (`from` can no longer be omitted)
|
|
20
|
+
* Support nested types in parentheses [[#1716](https://github.com/DanielXMoore/Civet/pull/1716)]
|
|
21
|
+
* Fix `export`ing statement expressions [[#1717](https://github.com/DanielXMoore/Civet/pull/1717)]
|
|
22
|
+
* Fix complex one-line `if` then blocks via bracing [[#1718](https://github.com/DanielXMoore/Civet/pull/1718)]
|
|
23
|
+
* Indented forms of `implements` and `with` [[#1719](https://github.com/DanielXMoore/Civet/pull/1719)]
|
|
24
|
+
|
|
7
25
|
## 0.9.7 (2025-02-24, [diff](https://github.com/DanielXMoore/Civet/compare/v0.9.6...v0.9.7), [commits](https://github.com/DanielXMoore/Civet/commits/v0.9.7))
|
|
8
26
|
* Allow binary operators after nested object literals and bulleted arrays, fix `++` with bulleted arrays [[#1688](https://github.com/DanielXMoore/Civet/pull/1688)]
|
|
9
27
|
* Fix bind property shorthand in JSX [[#1690](https://github.com/DanielXMoore/Civet/pull/1690)]
|
package/README.md
CHANGED
|
@@ -17,7 +17,7 @@ The modern way to write TypeScript.
|
|
|
17
17
|
- [Civet VSCode Extension](https://marketplace.visualstudio.com/items?itemName=DanielX.civet)
|
|
18
18
|
- [Discord Server](https://discord.gg/xkrW9GebBc)
|
|
19
19
|
- Plugins for
|
|
20
|
-
[Vite, esbuild, Astro, Rollup, Webpack
|
|
20
|
+
[Vite, esbuild, Astro, Farm, Rolldown, Rollup, Webpack](source/unplugin),
|
|
21
21
|
<!--
|
|
22
22
|
[esbuild](source/esbuild-plugin.civet),
|
|
23
23
|
[Vite](https://github.com/edemaine/vite-plugin-civet),
|