@danielx/civet 0.11.5 → 0.11.7
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 +306 -0
- package/README.md +2 -7
- package/dist/babel-plugin.js +7 -6
- package/dist/babel-plugin.mjs +3 -3
- package/dist/browser.js +807 -540
- package/dist/civet +24 -18
- package/dist/config.js +7313 -7
- package/dist/config.mjs +7338 -4
- package/dist/esbuild-plugin.js +7 -6
- package/dist/esm.mjs +10 -16
- package/dist/main.js +1787 -895
- package/dist/main.mjs +1782 -891
- package/dist/node-worker.mjs +1 -2
- package/dist/ts-diagnostic.js +5 -4
- package/dist/ts-diagnostic.mjs +1 -1
- package/dist/types.d.ts +11 -2
- package/dist/unplugin/astro.js +8 -7
- package/dist/unplugin/astro.mjs +6 -4
- package/dist/unplugin/esbuild.d.ts +1 -1
- package/dist/unplugin/esbuild.js +7 -6
- package/dist/unplugin/esbuild.mjs +5 -3
- package/dist/unplugin/farm.d.ts +3 -1
- package/dist/unplugin/farm.js +7 -6
- package/dist/unplugin/farm.mjs +6 -4
- package/dist/unplugin/rolldown.d.ts +1 -1
- package/dist/unplugin/rolldown.js +7 -6
- package/dist/unplugin/rolldown.mjs +5 -3
- package/dist/unplugin/rollup.d.ts +1 -1
- package/dist/unplugin/rollup.js +7 -6
- package/dist/unplugin/rollup.mjs +5 -3
- package/dist/unplugin/rspack.d.ts +1 -1
- package/dist/unplugin/rspack.js +7 -6
- package/dist/unplugin/rspack.mjs +5 -3
- package/dist/unplugin/unplugin.d.ts +27 -3
- package/dist/unplugin/unplugin.js +68 -42
- package/dist/unplugin/unplugin.mjs +53 -30
- package/dist/unplugin/vite.d.ts +1 -1
- package/dist/unplugin/vite.js +7 -6
- package/dist/unplugin/vite.mjs +5 -3
- package/dist/unplugin/webpack.d.ts +1 -1
- package/dist/unplugin/webpack.js +7 -6
- package/dist/unplugin/webpack.mjs +5 -3
- package/package.json +33 -17
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,89 @@ 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.7 (2026-04-16, [diff](https://github.com/DanielXMoore/Civet/compare/v0.11.6...v0.11.7), [commits](https://github.com/DanielXMoore/Civet/commits/v0.11.7))
|
|
8
|
+
* Add full repo history to publish script checkout for changelog verification step [[#1930](https://github.com/DanielXMoore/Civet/pull/1930)]
|
|
9
|
+
* Build and test use sourcemaps and default to up to 4 threads [[#1931](https://github.com/DanielXMoore/Civet/pull/1931)]
|
|
10
|
+
* Increase CLI and unplugin test coverage [[#1921](https://github.com/DanielXMoore/Civet/pull/1921)]
|
|
11
|
+
* Fix ternary with trailing ? and indented values [[#1934](https://github.com/DanielXMoore/Civet/pull/1934)]
|
|
12
|
+
* Dev: Improve changelog handling of squash commits [[#1932](https://github.com/DanielXMoore/Civet/pull/1932)]
|
|
13
|
+
* Convert LSP source and build to use Civet [[#1935](https://github.com/DanielXMoore/Civet/pull/1935)]
|
|
14
|
+
* LSP E2E test coverage [[#1937](https://github.com/DanielXMoore/Civet/pull/1937)]
|
|
15
|
+
* LSP fixes for path casing (e.g. Windows) and ts documents [[#1939](https://github.com/DanielXMoore/Civet/pull/1939)]
|
|
16
|
+
* CI tests on Windows too [[#1940](https://github.com/DanielXMoore/Civet/pull/1940)]
|
|
17
|
+
* feat: object shorthand optional properties [[#1938](https://github.com/DanielXMoore/Civet/pull/1938)]
|
|
18
|
+
* Pin parameters `^name` gain `typeof` type inference [[#1942](https://github.com/DanielXMoore/Civet/pull/1942)]
|
|
19
|
+
* Rename LSP test script names [[#1941](https://github.com/DanielXMoore/Civet/pull/1941)]
|
|
20
|
+
* Allow trailing member access after pipeline expressions [[#1943](https://github.com/DanielXMoore/Civet/pull/1943)]
|
|
21
|
+
* Bump vite from 8.0.3 to 8.0.5 [[#1944](https://github.com/DanielXMoore/Civet/pull/1944)]
|
|
22
|
+
* Dev: Fix eslint typecheck [[#1947](https://github.com/DanielXMoore/Civet/pull/1947)]
|
|
23
|
+
* Dev: Update Next.js and Vite dependencies [[#1948](https://github.com/DanielXMoore/Civet/pull/1948)]
|
|
24
|
+
* Bump vite from 5.4.21 to 8.0.5 [[#1946](https://github.com/DanielXMoore/Civet/pull/1946)]
|
|
25
|
+
* eslint internal tweak to use new extension rewriting [[#1952](https://github.com/DanielXMoore/Civet/pull/1952)]
|
|
26
|
+
* Pin properties and pin patterns in arrays use `typeof` typing [[#1951](https://github.com/DanielXMoore/Civet/pull/1951)]
|
|
27
|
+
* Add esCompat flag with esArrowFunction option [[#1949](https://github.com/DanielXMoore/Civet/pull/1949)]
|
|
28
|
+
* Extract LSP server into standalone @danielx/civet-lsp-server package [[#1950](https://github.com/DanielXMoore/Civet/pull/1950)]
|
|
29
|
+
* `esCompat` turns off implicit returns, no longer affects `->` [[#1954](https://github.com/DanielXMoore/Civet/pull/1954)]
|
|
30
|
+
* Feature: Zed Extension [[#1953](https://github.com/DanielXMoore/Civet/pull/1953)]
|
|
31
|
+
* Fix civet-language-server package name, nvim tree-sitter config [[#1955](https://github.com/DanielXMoore/Civet/pull/1955)]
|
|
32
|
+
* LSP: Auto import when selecting completions [[#1956](https://github.com/DanielXMoore/Civet/pull/1956)]
|
|
33
|
+
* Add semantic token provider to Civet LSP [[#1881](https://github.com/DanielXMoore/Civet/pull/1881)]
|
|
34
|
+
* LSP test coverage [[#1957](https://github.com/DanielXMoore/Civet/pull/1957)]
|
|
35
|
+
* Code style and typing fixes [[#1958](https://github.com/DanielXMoore/Civet/pull/1958)]
|
|
36
|
+
* Dev: Unify compiler and LSP code coverage [[#1960](https://github.com/DanielXMoore/Civet/pull/1960)]
|
|
37
|
+
|
|
38
|
+
## 0.11.6 (2026-04-06, [diff](https://github.com/DanielXMoore/Civet/compare/v0.11.5...v0.11.6), [commits](https://github.com/DanielXMoore/Civet/commits/v0.11.6))
|
|
39
|
+
* Allow class fields with the same name as modifiers [[#1861](https://github.com/DanielXMoore/Civet/pull/1861)]
|
|
40
|
+
* Support TypeScript 6+ [[#1865](https://github.com/DanielXMoore/Civet/pull/1865)]
|
|
41
|
+
* unplugin support for `#` in paths [[#1867](https://github.com/DanielXMoore/Civet/pull/1867)]
|
|
42
|
+
* `eslint.config.civet` support via `civetlint`, ESM query support [[#1869](https://github.com/DanielXMoore/Civet/pull/1869)]
|
|
43
|
+
* Fix emitDeclaration builds in ESM unplugin output. [[#1871](https://github.com/DanielXMoore/Civet/pull/1871)]
|
|
44
|
+
* Sourcemap sources should be relative to outdir [[#1872](https://github.com/DanielXMoore/Civet/pull/1872)]
|
|
45
|
+
* Fix double-wrapping of assignment expressions inside explicit parentheses [[#1880](https://github.com/DanielXMoore/Civet/pull/1880)]
|
|
46
|
+
* Rewrite .ts/.civet in dynamic imports with string literals [[#1877](https://github.com/DanielXMoore/Civet/pull/1877)]
|
|
47
|
+
* Fix one-line arrow dynamic import parsing [[#1884](https://github.com/DanielXMoore/Civet/pull/1884)]
|
|
48
|
+
* Fix parse error for trailing comments in JSX prop function bodies [[#1887](https://github.com/DanielXMoore/Civet/pull/1887)]
|
|
49
|
+
* Organize into pnpm workspaces [[#1886](https://github.com/DanielXMoore/Civet/pull/1886)]
|
|
50
|
+
* Fix semicolon-terminated single-line case clause [[#1889](https://github.com/DanielXMoore/Civet/pull/1889)]
|
|
51
|
+
* Speed up building and testing [[#1879](https://github.com/DanielXMoore/Civet/pull/1879)]
|
|
52
|
+
* Using Civet in parser.hera [[#1876](https://github.com/DanielXMoore/Civet/pull/1876)]
|
|
53
|
+
* Upgrade dev dependencies, resolving dependabot security alerts [[#1891](https://github.com/DanielXMoore/Civet/pull/1891)]
|
|
54
|
+
* Claude Code GitHub Workflow [[#1892](https://github.com/DanielXMoore/Civet/pull/1892)]
|
|
55
|
+
* Claude Code config [[#1894](https://github.com/DanielXMoore/Civet/pull/1894)]
|
|
56
|
+
* Claude Code debugging [[#1895](https://github.com/DanielXMoore/Civet/pull/1895)]
|
|
57
|
+
* pnpm overrides for lodash, esbuild, diff security vulnerabilities [[#1897](https://github.com/DanielXMoore/Civet/pull/1897)]
|
|
58
|
+
* Remove gulp pnpm-lock to unify it with the workspace [[#1898](https://github.com/DanielXMoore/Civet/pull/1898)]
|
|
59
|
+
* Update nocache rules to be in sync with grammar [[#1900](https://github.com/DanielXMoore/Civet/pull/1900)]
|
|
60
|
+
* First pass converting parser.hera to Civet code [[#1899](https://github.com/DanielXMoore/Civet/pull/1899)]
|
|
61
|
+
* Fix shorthand @ in destructuring assignments to use this.x directly [[#1901](https://github.com/DanielXMoore/Civet/pull/1901)]
|
|
62
|
+
* Fix implicit object with arrow function body parsed as typed const [[#1873](https://github.com/DanielXMoore/Civet/pull/1873)]
|
|
63
|
+
* test: only post coverage on pull_request to prevent double status [[#1907](https://github.com/DanielXMoore/Civet/pull/1907)]
|
|
64
|
+
* test: add main compiler API test coverage [[#1902](https://github.com/DanielXMoore/Civet/pull/1902)]
|
|
65
|
+
* test: add bundler adapter test coverage [[#1903](https://github.com/DanielXMoore/Civet/pull/1903)]
|
|
66
|
+
* test: add unplugin core module test coverage [[#1906](https://github.com/DanielXMoore/Civet/pull/1906)]
|
|
67
|
+
* test: add browser module test coverage [[#1904](https://github.com/DanielXMoore/Civet/pull/1904)]
|
|
68
|
+
* test: expand config loading test coverage [[#1909](https://github.com/DanielXMoore/Civet/pull/1909)]
|
|
69
|
+
* test: expand CLI argument parsing and output filename coverage [[#1908](https://github.com/DanielXMoore/Civet/pull/1908)]
|
|
70
|
+
* test: add worker-pool test coverage [[#1905](https://github.com/DanielXMoore/Civet/pull/1905)]
|
|
71
|
+
* test: expand esbuild plugin test coverage [[#1910](https://github.com/DanielXMoore/Civet/pull/1910)]
|
|
72
|
+
* test: add ts-diagnostic test coverage [[#1912](https://github.com/DanielXMoore/Civet/pull/1912)]
|
|
73
|
+
* test: add babel plugin test coverage [[#1911](https://github.com/DanielXMoore/Civet/pull/1911)]
|
|
74
|
+
* Chain sourcemaps in Civet input [[#1896](https://github.com/DanielXMoore/Civet/pull/1896)]
|
|
75
|
+
* Remove test logging clutter [[#1914](https://github.com/DanielXMoore/Civet/pull/1914)]
|
|
76
|
+
* Cache Civet compiles to speed up CI [[#1913](https://github.com/DanielXMoore/Civet/pull/1913)]
|
|
77
|
+
* Fix doubled call to test [[#1918](https://github.com/DanielXMoore/Civet/pull/1918)]
|
|
78
|
+
* Condition gating coveralls isn't working as intended; double status is benign [[#1917](https://github.com/DanielXMoore/Civet/pull/1917)]
|
|
79
|
+
* OIDC publish from GitHub workflow [[#1916](https://github.com/DanielXMoore/Civet/pull/1916)]
|
|
80
|
+
* Infrastructure fixes: cross-env, package config [[#1915](https://github.com/DanielXMoore/Civet/pull/1915)]
|
|
81
|
+
* get max turns from organization variable [[#1920](https://github.com/DanielXMoore/Civet/pull/1920)]
|
|
82
|
+
* LSP tests working again [[#1923](https://github.com/DanielXMoore/Civet/pull/1923)]
|
|
83
|
+
* Fix compiler crash when assigning switch with declaration condition [[#1922](https://github.com/DanielXMoore/Civet/pull/1922)]
|
|
84
|
+
* Fix CLI tests on Windows [[#1925](https://github.com/DanielXMoore/Civet/pull/1925)]
|
|
85
|
+
* Correct source filenames in esbuild diagnostic errors [[#1924](https://github.com/DanielXMoore/Civet/pull/1924)]
|
|
86
|
+
* Use .cache/build when building [[#1927](https://github.com/DanielXMoore/Civet/pull/1927)]
|
|
87
|
+
* Fix sourcemap composition by allowing inexact match [[#1926](https://github.com/DanielXMoore/Civet/pull/1926)]
|
|
88
|
+
* Release scripts: CI changelog verification, pnpm release [[#1928](https://github.com/DanielXMoore/Civet/pull/1928)]
|
|
89
|
+
|
|
7
90
|
## 0.11.5 (2026-03-10, [diff](https://github.com/DanielXMoore/Civet/compare/v0.11.4...v0.11.5), [commits](https://github.com/DanielXMoore/Civet/commits/v0.11.5))
|
|
8
91
|
* Fix unplugin on Node 25 [[#1859](https://github.com/DanielXMoore/Civet/pull/1859)]
|
|
9
92
|
|
|
@@ -910,6 +993,7 @@ as well as a full diff and commit list.
|
|
|
910
993
|
* Unify pattern matching and declaration conditions [[#717](https://github.com/DanielXMoore/Civet/pull/717)]
|
|
911
994
|
|
|
912
995
|
## 0.6.35 (2023-09-10, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.34...v0.6.35), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.35))
|
|
996
|
+
* Updating civet dep to reap some perf improvement [[#712](https://github.com/DanielXMoore/Civet/pull/712)]
|
|
913
997
|
* Fix #629: Unary op with late assignment [[#716](https://github.com/DanielXMoore/Civet/pull/716)]
|
|
914
998
|
* Reference [[#685](https://github.com/DanielXMoore/Civet/pull/685)]
|
|
915
999
|
* get/set method shorthand [[#637](https://github.com/DanielXMoore/Civet/pull/637)]
|
|
@@ -917,6 +1001,7 @@ as well as a full diff and commit list.
|
|
|
917
1001
|
* Fix #719: existential property glob and get/set shorthand with existential glob [[#720](https://github.com/DanielXMoore/Civet/pull/720)]
|
|
918
1002
|
|
|
919
1003
|
## 0.6.34 (2023-09-08, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.33...v0.6.34), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.34))
|
|
1004
|
+
* Allow more ergonomic require of cjs esbuild plugin [[#713](https://github.com/DanielXMoore/Civet/pull/713)]
|
|
920
1005
|
|
|
921
1006
|
## 0.6.33 (2023-09-08, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.32...v0.6.33), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.33))
|
|
922
1007
|
* Underflowing arrays is a perf killer [[#711](https://github.com/DanielXMoore/Civet/pull/711)]
|
|
@@ -948,6 +1033,9 @@ as well as a full diff and commit list.
|
|
|
948
1033
|
* `(&)` identity function shorthand [[#688](https://github.com/DanielXMoore/Civet/pull/688)]
|
|
949
1034
|
|
|
950
1035
|
## 0.6.27 (2023-08-31, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.26...v0.6.27), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.27))
|
|
1036
|
+
* Add Coveralls [[#658](https://github.com/DanielXMoore/Civet/pull/658)]
|
|
1037
|
+
* Update Hera [[#656](https://github.com/DanielXMoore/Civet/pull/656)]
|
|
1038
|
+
* ??? -> unknown [[#659](https://github.com/DanielXMoore/Civet/pull/659)]
|
|
951
1039
|
* 🐈🐈🐈 [[#657](https://github.com/DanielXMoore/Civet/pull/657)]
|
|
952
1040
|
* Added void to improve types and opt out of implicit returns [[#672](https://github.com/DanielXMoore/Civet/pull/672)]
|
|
953
1041
|
* Add missing semicolon after one-line `if` branch [[#671](https://github.com/DanielXMoore/Civet/pull/671)]
|
|
@@ -960,12 +1048,16 @@ as well as a full diff and commit list.
|
|
|
960
1048
|
* Fix #564 Implement basic const enums in --js mode [[#654](https://github.com/DanielXMoore/Civet/pull/654)]
|
|
961
1049
|
|
|
962
1050
|
## 0.6.25 (2023-08-25, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.24...v0.6.25), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.25))
|
|
1051
|
+
* Docs add vite-plugin-civetman to Integration [[#650](https://github.com/DanielXMoore/Civet/pull/650)]
|
|
1052
|
+
* basic babel plugin [[#550](https://github.com/DanielXMoore/Civet/pull/550)]
|
|
1053
|
+
* Fix #599 [[#648](https://github.com/DanielXMoore/Civet/pull/648)]
|
|
963
1054
|
* Initial auto-const [[#649](https://github.com/DanielXMoore/Civet/pull/649)]
|
|
964
1055
|
* Fix #639 hoistable thick pipe ref decs [[#651](https://github.com/DanielXMoore/Civet/pull/651)]
|
|
965
1056
|
* Fix #640 implicit return of const function declarations [[#652](https://github.com/DanielXMoore/Civet/pull/652)]
|
|
966
1057
|
|
|
967
1058
|
## 0.6.24 (2023-08-22, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.23...v0.6.24), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.24))
|
|
968
1059
|
* Updated the Bun-related how-to [[#646](https://github.com/DanielXMoore/Civet/pull/646)]
|
|
1060
|
+
* cache2: 2 cache 2 furious [[#645](https://github.com/DanielXMoore/Civet/pull/645)]
|
|
969
1061
|
|
|
970
1062
|
## 0.6.23 (2023-08-20, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.22...v0.6.23), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.23))
|
|
971
1063
|
* Postfix expressions inside indented implicit object literals [[#630](https://github.com/DanielXMoore/Civet/pull/630)]
|
|
@@ -985,6 +1077,8 @@ as well as a full diff and commit list.
|
|
|
985
1077
|
|
|
986
1078
|
## 0.6.20 (2023-08-07, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.19...v0.6.20), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.20))
|
|
987
1079
|
* Fix tuple-matching behavior [[#608](https://github.com/DanielXMoore/Civet/pull/608)]
|
|
1080
|
+
* Bump semver from 5.7.1 to 5.7.2 in /lsp [[#609](https://github.com/DanielXMoore/Civet/pull/609)]
|
|
1081
|
+
* Bump semver from 6.3.0 to 6.3.1 [[#610](https://github.com/DanielXMoore/Civet/pull/610)]
|
|
988
1082
|
* Forbid binary op after newline within SingleLineStatements (e.g. `then`) [[#612](https://github.com/DanielXMoore/Civet/pull/612)]
|
|
989
1083
|
* Remove forbidMultiLineImplicitObjectLiteral [[#613](https://github.com/DanielXMoore/Civet/pull/613)]
|
|
990
1084
|
* Revamp braced object literals [[#614](https://github.com/DanielXMoore/Civet/pull/614)]
|
|
@@ -1004,6 +1098,7 @@ as well as a full diff and commit list.
|
|
|
1004
1098
|
* Possessive object access [[#603](https://github.com/DanielXMoore/Civet/pull/603)]
|
|
1005
1099
|
|
|
1006
1100
|
## 0.6.17 (2023-07-31, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.16...v0.6.17), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.17))
|
|
1101
|
+
* Fix #596. async function expression [[#597](https://github.com/DanielXMoore/Civet/pull/597)]
|
|
1007
1102
|
* `switch` fixes [[#594](https://github.com/DanielXMoore/Civet/pull/594)]
|
|
1008
1103
|
* Support indented RHS after binary op [[#600](https://github.com/DanielXMoore/Civet/pull/600)]
|
|
1009
1104
|
* No implicit return from async function: Promise<void> [[#601](https://github.com/DanielXMoore/Civet/pull/601)]
|
|
@@ -1036,80 +1131,124 @@ as well as a full diff and commit list.
|
|
|
1036
1131
|
* Support new arrow function types [[#569](https://github.com/DanielXMoore/Civet/pull/569)]
|
|
1037
1132
|
|
|
1038
1133
|
## 0.6.10 (2023-07-03, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.9...v0.6.10), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.10))
|
|
1134
|
+
* Added optional prefixed union syntax for TypeScript. Fixes #544 [[#556](https://github.com/DanielXMoore/Civet/pull/556)]
|
|
1039
1135
|
* `not` support outside coffeeCompat mode [[#557](https://github.com/DanielXMoore/Civet/pull/557)]
|
|
1040
1136
|
* Unicode operators ≤≥≠≢≡≣⩶⩵«»⋙‖⁇∈∉∋∌▷‥…≔→⇒ [[#558](https://github.com/DanielXMoore/Civet/pull/558)]
|
|
1041
1137
|
|
|
1042
1138
|
## 0.6.9 (2023-06-18, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.8...v0.6.9), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.9))
|
|
1139
|
+
* Implement config file [[#551](https://github.com/DanielXMoore/Civet/pull/551)]
|
|
1043
1140
|
|
|
1044
1141
|
## 0.6.8 (2023-06-10, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.7...v0.6.8), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.8))
|
|
1045
1142
|
* Function implicit bodies [[#542](https://github.com/DanielXMoore/Civet/pull/542)]
|
|
1046
1143
|
* Fix implicit calls with bind and decorators [[#545](https://github.com/DanielXMoore/Civet/pull/545)]
|
|
1047
1144
|
* Fix readonly support in interfaces [[#546](https://github.com/DanielXMoore/Civet/pull/546)]
|
|
1145
|
+
* Bump vite from 4.0.4 to 4.3.9 [[#554](https://github.com/DanielXMoore/Civet/pull/554)]
|
|
1146
|
+
* Fixes #552. Don't hoist decs to bare blocks [[#553](https://github.com/DanielXMoore/Civet/pull/553)]
|
|
1048
1147
|
|
|
1049
1148
|
## 0.6.7 (2023-06-02, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.6...v0.6.7), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.7))
|
|
1149
|
+
* Allow for method and constructor overloading in classes. Fixes #538 [[#540](https://github.com/DanielXMoore/Civet/pull/540)]
|
|
1050
1150
|
|
|
1051
1151
|
## 0.6.6 (2023-05-31, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.5...v0.6.6), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.6))
|
|
1152
|
+
* Use refs for indexed object shorthand. Fixes #415 [[#537](https://github.com/DanielXMoore/Civet/pull/537)]
|
|
1052
1153
|
|
|
1053
1154
|
## 0.6.5 (2023-05-29, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.4...v0.6.5), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.5))
|
|
1155
|
+
* refs for object glob left hand side [[#535](https://github.com/DanielXMoore/Civet/pull/535)]
|
|
1054
1156
|
|
|
1055
1157
|
## 0.6.4 (2023-05-25, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.3...v0.6.4), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.4))
|
|
1158
|
+
* Moving functions from parser.hera into lib.js [[#531](https://github.com/DanielXMoore/Civet/pull/531)]
|
|
1159
|
+
* Add unary expression processing in ampersand blocks. Fixes #528 [[#532](https://github.com/DanielXMoore/Civet/pull/532)]
|
|
1056
1160
|
|
|
1057
1161
|
## 0.6.3 (2023-05-24, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.2...v0.6.3), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.3))
|
|
1058
1162
|
* Small whitespace fix for trailing splat [[#524](https://github.com/DanielXMoore/Civet/pull/524)]
|
|
1163
|
+
* Fix a typo when loading `civetPlugin` [[#526](https://github.com/DanielXMoore/Civet/pull/526)]
|
|
1164
|
+
* post rest trailing commas and elisions. Fixes #525 [[#530](https://github.com/DanielXMoore/Civet/pull/530)]
|
|
1165
|
+
* ref decs for pattern matching. Fixes #523 [[#529](https://github.com/DanielXMoore/Civet/pull/529)]
|
|
1059
1166
|
|
|
1060
1167
|
## 0.6.2 (2023-05-13, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.1...v0.6.2), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.2))
|
|
1168
|
+
* handle non-binding multiple pattern alternatives [[#516](https://github.com/DanielXMoore/Civet/pull/516)]
|
|
1169
|
+
* Pattern matching gather duplicate bindings [[#517](https://github.com/DanielXMoore/Civet/pull/517)]
|
|
1170
|
+
* Pattern spread [[#518](https://github.com/DanielXMoore/Civet/pull/518)]
|
|
1061
1171
|
* Support splats in type tuples [[#521](https://github.com/DanielXMoore/Civet/pull/521)]
|
|
1062
1172
|
|
|
1063
1173
|
## 0.6.1 (2023-05-02, [diff](https://github.com/DanielXMoore/Civet/compare/v0.6.0...v0.6.1), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.1))
|
|
1064
1174
|
|
|
1065
1175
|
## 0.6.0 (2023-05-02, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.94...v0.6.0), [commits](https://github.com/DanielXMoore/Civet/commits/v0.6.0))
|
|
1176
|
+
* more pattern matching [[#510](https://github.com/DanielXMoore/Civet/pull/510)]
|
|
1066
1177
|
|
|
1067
1178
|
## 0.5.94 (2023-04-15, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.93...v0.5.94), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.94))
|
|
1179
|
+
* Configurable and chainable civet esbuild plugin [[#448](https://github.com/DanielXMoore/Civet/pull/448)]
|
|
1180
|
+
* const type parameters. #456 [[#502](https://github.com/DanielXMoore/Civet/pull/502)]
|
|
1068
1181
|
* x@y and @@x bind shorthand, plus JSX fixes [[#506](https://github.com/DanielXMoore/Civet/pull/506)]
|
|
1069
1182
|
* JSX unbraced @ and @@ shorthand [[#507](https://github.com/DanielXMoore/Civet/pull/507)]
|
|
1070
1183
|
* JSX braceless call/member/glob expressions [[#508](https://github.com/DanielXMoore/Civet/pull/508)]
|
|
1071
1184
|
|
|
1072
1185
|
## 0.5.93 (2023-04-01, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.92...v0.5.93), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.93))
|
|
1186
|
+
* Fixes #491 [[#494](https://github.com/DanielXMoore/Civet/pull/494)]
|
|
1187
|
+
* Fix #493 [[#496](https://github.com/DanielXMoore/Civet/pull/496)]
|
|
1188
|
+
* Fixes #488 [[#495](https://github.com/DanielXMoore/Civet/pull/495)]
|
|
1189
|
+
* source-map-support dependency [[#497](https://github.com/DanielXMoore/Civet/pull/497)]
|
|
1073
1190
|
* Call splice method directly [[#499](https://github.com/DanielXMoore/Civet/pull/499)]
|
|
1074
1191
|
* Fix sourcemap support from CLI [[#498](https://github.com/DanielXMoore/Civet/pull/498)]
|
|
1075
1192
|
* Remove tsx after ESM transpilation [[#500](https://github.com/DanielXMoore/Civet/pull/500)]
|
|
1076
1193
|
* Fix implicit async/* in functions with arguments [[#501](https://github.com/DanielXMoore/Civet/pull/501)]
|
|
1077
1194
|
|
|
1078
1195
|
## 0.5.92 (2023-03-30, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.91...v0.5.92), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.92))
|
|
1196
|
+
* fix #483 [[#484](https://github.com/DanielXMoore/Civet/pull/484)]
|
|
1079
1197
|
|
|
1080
1198
|
## 0.5.91 (2023-03-29, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.90...v0.5.91), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.91))
|
|
1081
1199
|
* Indentation after await operator [[#475](https://github.com/DanielXMoore/Civet/pull/475)]
|
|
1082
1200
|
* CLI can run ESM scripts via import [[#477](https://github.com/DanielXMoore/Civet/pull/477)]
|
|
1083
1201
|
* Inline implicit object literals can't end with comma [[#479](https://github.com/DanielXMoore/Civet/pull/479)]
|
|
1202
|
+
* implicit JSX element [[#482](https://github.com/DanielXMoore/Civet/pull/482)]
|
|
1084
1203
|
|
|
1085
1204
|
## 0.5.90 (2023-03-23, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.89...v0.5.90), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.90))
|
|
1205
|
+
* Fixes #469 [[#470](https://github.com/DanielXMoore/Civet/pull/470)]
|
|
1206
|
+
* splices and this assignments in conditional bindings [[#471](https://github.com/DanielXMoore/Civet/pull/471)]
|
|
1207
|
+
* Fixes #293. Await ops [[#472](https://github.com/DanielXMoore/Civet/pull/472)]
|
|
1086
1208
|
|
|
1087
1209
|
## 0.5.89 (2023-03-20, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.88...v0.5.89), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.89))
|
|
1210
|
+
* Refactor block indentation [[#465](https://github.com/DanielXMoore/Civet/pull/465)]
|
|
1211
|
+
* Fix #452. Ampersand block trailing members [[#468](https://github.com/DanielXMoore/Civet/pull/468)]
|
|
1088
1212
|
|
|
1089
1213
|
## 0.5.88 (2023-03-19, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.87...v0.5.88), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.88))
|
|
1214
|
+
* Fixes #461 [[#463](https://github.com/DanielXMoore/Civet/pull/463)]
|
|
1215
|
+
* semi-colon suppresses result push [[#464](https://github.com/DanielXMoore/Civet/pull/464)]
|
|
1090
1216
|
|
|
1091
1217
|
## 0.5.87 (2023-03-16, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.86...v0.5.87), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.87))
|
|
1092
1218
|
* Link to Civetman [[#450](https://github.com/DanielXMoore/Civet/pull/450)]
|
|
1219
|
+
* Declarations inside conditionals [[#451](https://github.com/DanielXMoore/Civet/pull/451)]
|
|
1093
1220
|
|
|
1094
1221
|
## 0.5.86 (2023-03-11, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.85...v0.5.86), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.86))
|
|
1222
|
+
* @ type parameter with other parameters [[#447](https://github.com/DanielXMoore/Civet/pull/447)]
|
|
1095
1223
|
|
|
1096
1224
|
## 0.5.85 (2023-03-10, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.84...v0.5.85), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.85))
|
|
1097
1225
|
* For loop optimizations and generalizations [[#442](https://github.com/DanielXMoore/Civet/pull/442)]
|
|
1098
1226
|
* Semicolon-separated statements in blocks [[#443](https://github.com/DanielXMoore/Civet/pull/443)]
|
|
1227
|
+
* TypeTemplateLiterals. Fixes #441 [[#445](https://github.com/DanielXMoore/Civet/pull/445)]
|
|
1099
1228
|
|
|
1100
1229
|
## 0.5.84 (2023-03-05, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.83...v0.5.84), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.84))
|
|
1230
|
+
* Fixes #436. Fixed regression in TrailingComment [[#437](https://github.com/DanielXMoore/Civet/pull/437)]
|
|
1101
1231
|
|
|
1102
1232
|
## 0.5.83 (2023-03-05, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.82...v0.5.83), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.83))
|
|
1103
1233
|
* Fix regression in indented application from decorators change. Fixes #434 [[#435](https://github.com/DanielXMoore/Civet/pull/435)]
|
|
1104
1234
|
|
|
1105
1235
|
## 0.5.82 (2023-03-04, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.81...v0.5.82), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.82))
|
|
1236
|
+
* Implicit `async` and `*` for functions and methods [[#433](https://github.com/DanielXMoore/Civet/pull/433)]
|
|
1106
1237
|
|
|
1107
1238
|
## 0.5.81 (2023-03-04, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.80...v0.5.81), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.81))
|
|
1239
|
+
* Codeblocks!!!!! [[#428](https://github.com/DanielXMoore/Civet/pull/428)]
|
|
1240
|
+
* Replace TrailingComment* with _? except after statement delimiters. [[#430](https://github.com/DanielXMoore/Civet/pull/430)]
|
|
1241
|
+
* ♻️ change grammar.hera to parser.hera [[#432](https://github.com/DanielXMoore/Civet/pull/432)]
|
|
1242
|
+
* Ampersand pipes [[#431](https://github.com/DanielXMoore/Civet/pull/431)]
|
|
1108
1243
|
|
|
1109
1244
|
## 0.5.80 (2023-03-02, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.79...v0.5.80), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.80))
|
|
1110
1245
|
* New top-level statement system [[#414](https://github.com/DanielXMoore/Civet/pull/414)]
|
|
1246
|
+
* Fixes #416: Fix handling of backslash escapes inside strings that convert to template strings [[#417](https://github.com/DanielXMoore/Civet/pull/417)]
|
|
1247
|
+
* Fixes #420 Decorate exported class [[#425](https://github.com/DanielXMoore/Civet/pull/425)]
|
|
1248
|
+
* Use a simple deep copy because structuredClone isn't available on node <17 [[#426](https://github.com/DanielXMoore/Civet/pull/426)]
|
|
1111
1249
|
|
|
1112
1250
|
## 0.5.79 (2023-02-24, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.78...v0.5.79), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.79))
|
|
1251
|
+
* Decorators with member and calls [[#413](https://github.com/DanielXMoore/Civet/pull/413)]
|
|
1113
1252
|
|
|
1114
1253
|
## 0.5.78 (2023-02-23, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.77...v0.5.78), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.78))
|
|
1115
1254
|
* Call with unparenthesized iteration expression argument [[#411](https://github.com/DanielXMoore/Civet/pull/411)]
|
|
@@ -1117,7 +1256,9 @@ as well as a full diff and commit list.
|
|
|
1117
1256
|
## 0.5.77 (2023-02-23, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.76...v0.5.77), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.77))
|
|
1118
1257
|
* async do, async for [[#402](https://github.com/DanielXMoore/Civet/pull/402)]
|
|
1119
1258
|
* Improve ligature toggles [[#404](https://github.com/DanielXMoore/Civet/pull/404)]
|
|
1259
|
+
* Pipe ref [[#403](https://github.com/DanielXMoore/Civet/pull/403)]
|
|
1120
1260
|
* Leave plain JSX strings alone, including newlines [[#408](https://github.com/DanielXMoore/Civet/pull/408)]
|
|
1261
|
+
* Pattern Matching [[#409](https://github.com/DanielXMoore/Civet/pull/409)]
|
|
1121
1262
|
* enum support [[#410](https://github.com/DanielXMoore/Civet/pull/410)]
|
|
1122
1263
|
|
|
1123
1264
|
## 0.5.76 (2023-02-20, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.75...v0.5.76), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.76))
|
|
@@ -1125,19 +1266,33 @@ as well as a full diff and commit list.
|
|
|
1125
1266
|
|
|
1126
1267
|
## 0.5.75 (2023-02-20, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.74...v0.5.75), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.75))
|
|
1127
1268
|
* Move Philosophy to civet.dev [[#394](https://github.com/DanielXMoore/Civet/pull/394)]
|
|
1269
|
+
* Parent pointer cleanup [[#395](https://github.com/DanielXMoore/Civet/pull/395)]
|
|
1128
1270
|
* Prevent indented application in Coffee for loops [[#396](https://github.com/DanielXMoore/Civet/pull/396)]
|
|
1129
1271
|
* Forbid indented application in first line of array literal [[#397](https://github.com/DanielXMoore/Civet/pull/397)]
|
|
1130
1272
|
* Automatically await/async expressionized statements with await [[#399](https://github.com/DanielXMoore/Civet/pull/399)]
|
|
1131
1273
|
|
|
1132
1274
|
## 0.5.74 (2023-02-19, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.73...v0.5.74), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.74))
|
|
1275
|
+
* Aggregate duplicate pattern matching bindings [[#375](https://github.com/DanielXMoore/Civet/pull/375)]
|
|
1276
|
+
* duplicate bindings after rest work [[#377](https://github.com/DanielXMoore/Civet/pull/377)]
|
|
1133
1277
|
* do expressions wrapping in iffe [[#376](https://github.com/DanielXMoore/Civet/pull/376)]
|
|
1278
|
+
* Fixes #383 [[#384](https://github.com/DanielXMoore/Civet/pull/384)]
|
|
1279
|
+
* Docs: Comparison to JavaScript/TypeScript [[#382](https://github.com/DanielXMoore/Civet/pull/382)]
|
|
1280
|
+
* Fixes #369 [[#385](https://github.com/DanielXMoore/Civet/pull/385)]
|
|
1134
1281
|
* Write an intro to Civet for the front page [[#386](https://github.com/DanielXMoore/Civet/pull/386)]
|
|
1282
|
+
* #387. Improve thick pipe return; pipe after inline arrow expression [[#388](https://github.com/DanielXMoore/Civet/pull/388)]
|
|
1283
|
+
* Fixes #387 [[#389](https://github.com/DanielXMoore/Civet/pull/389)]
|
|
1284
|
+
* Ligatures font toggle [[#390](https://github.com/DanielXMoore/Civet/pull/390)]
|
|
1135
1285
|
* Update Hero.vue [[#392](https://github.com/DanielXMoore/Civet/pull/392)]
|
|
1136
1286
|
* TypeScript non-null declarations [[#393](https://github.com/DanielXMoore/Civet/pull/393)]
|
|
1137
1287
|
|
|
1138
1288
|
## 0.5.73 (2023-02-15, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.72...v0.5.73), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.73))
|
|
1289
|
+
* Namespace and declare support [[#374](https://github.com/DanielXMoore/Civet/pull/374)]
|
|
1139
1290
|
|
|
1140
1291
|
## 0.5.72 (2023-02-14, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.71...v0.5.72), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.72))
|
|
1292
|
+
* #346 Unwrap amp blocks [[#370](https://github.com/DanielXMoore/Civet/pull/370)]
|
|
1293
|
+
* implicit return and results aggregation in pattern matching [[#372](https://github.com/DanielXMoore/Civet/pull/372)]
|
|
1294
|
+
* pattern matching expression [[#373](https://github.com/DanielXMoore/Civet/pull/373)]
|
|
1295
|
+
* x[..] slice [[#371](https://github.com/DanielXMoore/Civet/pull/371)]
|
|
1141
1296
|
|
|
1142
1297
|
## 0.5.71 (2023-02-13, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.70...v0.5.71), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.71))
|
|
1143
1298
|
* return.value and return = [[#364](https://github.com/DanielXMoore/Civet/pull/364)]
|
|
@@ -1146,12 +1301,14 @@ as well as a full diff and commit list.
|
|
|
1146
1301
|
|
|
1147
1302
|
## 0.5.70 (2023-02-12, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.69...v0.5.70), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.70))
|
|
1148
1303
|
* Allow label argument in break and continue [[#363](https://github.com/DanielXMoore/Civet/pull/363)]
|
|
1304
|
+
* Fix multiple spread object regression [[#360](https://github.com/DanielXMoore/Civet/pull/360)]
|
|
1149
1305
|
|
|
1150
1306
|
## 0.5.69 (2023-02-11, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.68...v0.5.69), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.69))
|
|
1151
1307
|
* Allow assignments and update operators within assignments and update operators ++/-- [[#353](https://github.com/DanielXMoore/Civet/pull/353)]
|
|
1152
1308
|
* Support for labeling statements [[#354](https://github.com/DanielXMoore/Civet/pull/354)]
|
|
1153
1309
|
* Cleanup flag stacks, re-allow stuff inside parens/brackets/braces [[#356](https://github.com/DanielXMoore/Civet/pull/356)]
|
|
1154
1310
|
* Prevent `case:` from implicit object literal [[#357](https://github.com/DanielXMoore/Civet/pull/357)]
|
|
1311
|
+
* Allow newline before type inside parens [[#358](https://github.com/DanielXMoore/Civet/pull/358)]
|
|
1155
1312
|
|
|
1156
1313
|
## 0.5.68 (2023-02-09, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.67...v0.5.68), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.68))
|
|
1157
1314
|
* Inner assignments within assignment chains [[#348](https://github.com/DanielXMoore/Civet/pull/348)]
|
|
@@ -1164,32 +1321,52 @@ as well as a full diff and commit list.
|
|
|
1164
1321
|
* Support hex and other numbers in ranges [[#345](https://github.com/DanielXMoore/Civet/pull/345)]
|
|
1165
1322
|
|
|
1166
1323
|
## 0.5.66 (2023-02-07, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.65...v0.5.66), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.66))
|
|
1324
|
+
* Thicc pipe [[#318](https://github.com/DanielXMoore/Civet/pull/318)]
|
|
1167
1325
|
* xor/^^ and xnor/!^ operators [[#340](https://github.com/DanielXMoore/Civet/pull/340)]
|
|
1168
1326
|
|
|
1169
1327
|
## 0.5.65 (2023-02-06, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.64...v0.5.65), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.65))
|
|
1328
|
+
* Fix #337. Correct RegExp character classes. [[#338](https://github.com/DanielXMoore/Civet/pull/338)]
|
|
1170
1329
|
|
|
1171
1330
|
## 0.5.64 (2023-02-05, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.63...v0.5.64), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.64))
|
|
1331
|
+
* Optional dot for object glob [[#331](https://github.com/DanielXMoore/Civet/pull/331)]
|
|
1332
|
+
* Make ampersand optional for some common blocks [[#330](https://github.com/DanielXMoore/Civet/pull/330)]
|
|
1172
1333
|
* Object globs, v2 [[#333](https://github.com/DanielXMoore/Civet/pull/333)]
|
|
1173
1334
|
* Fix #332 [[#334](https://github.com/DanielXMoore/Civet/pull/334)]
|
|
1174
1335
|
|
|
1175
1336
|
## 0.5.63 (2023-02-04, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.62...v0.5.63), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.63))
|
|
1176
1337
|
* Improve super property support [[#326](https://github.com/DanielXMoore/Civet/pull/326)]
|
|
1338
|
+
* Object glob patterns obj.{a,b} [[#327](https://github.com/DanielXMoore/Civet/pull/327)]
|
|
1339
|
+
* fix crash on empty [] pattern [[#328](https://github.com/DanielXMoore/Civet/pull/328)]
|
|
1177
1340
|
|
|
1178
1341
|
## 0.5.62 (2023-02-02, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.61...v0.5.62), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.62))
|
|
1179
1342
|
* Tagged string literals become tagged template literals [[#322](https://github.com/DanielXMoore/Civet/pull/322)]
|
|
1343
|
+
* Improve LSP queuing behavior [[#321](https://github.com/DanielXMoore/Civet/pull/321)]
|
|
1180
1344
|
* Function fixes [[#323](https://github.com/DanielXMoore/Civet/pull/323)]
|
|
1181
1345
|
* typeof shorthand [[#325](https://github.com/DanielXMoore/Civet/pull/325)]
|
|
1182
1346
|
|
|
1183
1347
|
## 0.5.61 (2023-02-01, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.60...v0.5.61), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.61))
|
|
1348
|
+
* Fixes #309 by being stricter about snug vs spaced binary ops [[#314](https://github.com/DanielXMoore/Civet/pull/314)]
|
|
1349
|
+
* Fix #310: Allow empty catch block; catch then; catch/finally cleanup [[#316](https://github.com/DanielXMoore/Civet/pull/316)]
|
|
1350
|
+
* Fix #305: Allow thin arrow in types [[#317](https://github.com/DanielXMoore/Civet/pull/317)]
|
|
1184
1351
|
|
|
1185
1352
|
## 0.5.60 (2023-02-01, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.59...v0.5.60), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.60))
|
|
1186
1353
|
* operator= assignment [[#301](https://github.com/DanielXMoore/Civet/pull/301)]
|
|
1354
|
+
* Added a sponsorship segment to the readme [[#302](https://github.com/DanielXMoore/Civet/pull/302)]
|
|
1355
|
+
* buffering change events to prevent stacking transpilations [[#304](https://github.com/DanielXMoore/Civet/pull/304)]
|
|
1356
|
+
* Fix #306: don't rewrite .ts imports in deno [[#307](https://github.com/DanielXMoore/Civet/pull/307)]
|
|
1187
1357
|
|
|
1188
1358
|
## 0.5.59 (2023-01-28, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.58...v0.5.59), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.59))
|
|
1189
1359
|
|
|
1190
1360
|
## 0.5.58 (2023-01-28, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.57...v0.5.58), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.58))
|
|
1191
1361
|
|
|
1192
1362
|
## 0.5.57 (2023-01-27, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.56...v0.5.57), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.57))
|
|
1363
|
+
* Escape `*/` in `###...###`, document `###` and `coffeeBoolean` [[#288](https://github.com/DanielXMoore/Civet/pull/288)]
|
|
1364
|
+
* Refactor StringLiteral vs. TemplateLiteral [[#294](https://github.com/DanielXMoore/Civet/pull/294)]
|
|
1365
|
+
* wip: pattern matching rules [[#239](https://github.com/DanielXMoore/Civet/pull/239)]
|
|
1366
|
+
* Identifier operators [[#295](https://github.com/DanielXMoore/Civet/pull/295)]
|
|
1367
|
+
* wip object pattern matching [[#296](https://github.com/DanielXMoore/Civet/pull/296)]
|
|
1368
|
+
* pushing flagging props to the limit [[#297](https://github.com/DanielXMoore/Civet/pull/297)]
|
|
1369
|
+
* `not op` for custom infix operator `op` [[#298](https://github.com/DanielXMoore/Civet/pull/298)]
|
|
1193
1370
|
|
|
1194
1371
|
## 0.5.56 (2023-01-24, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.55...v0.5.56), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.56))
|
|
1195
1372
|
* `{x[y]}` shorthand for `{[y]: x[y]}` [[#284](https://github.com/DanielXMoore/Civet/pull/284)]
|
|
@@ -1197,9 +1374,11 @@ as well as a full diff and commit list.
|
|
|
1197
1374
|
* `not instanceof`, `!<?`, reserve `not` [[#286](https://github.com/DanielXMoore/Civet/pull/286)]
|
|
1198
1375
|
|
|
1199
1376
|
## 0.5.55 (2023-01-24, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.54...v0.5.55), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.55))
|
|
1377
|
+
* move beyond tc39 to home page, slight reorder [[#282](https://github.com/DanielXMoore/Civet/pull/282)]
|
|
1200
1378
|
* Integer property access [[#283](https://github.com/DanielXMoore/Civet/pull/283)]
|
|
1201
1379
|
|
|
1202
1380
|
## 0.5.54 (2023-01-23, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.53...v0.5.54), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.54))
|
|
1381
|
+
* Move autolet to nearest statement [[#229](https://github.com/DanielXMoore/Civet/pull/229)]
|
|
1203
1382
|
|
|
1204
1383
|
## 0.5.53 (2023-01-23, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.52...v0.5.53), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.53))
|
|
1205
1384
|
* Fix Init being called too late [[#280](https://github.com/DanielXMoore/Civet/pull/280)]
|
|
@@ -1212,19 +1391,33 @@ as well as a full diff and commit list.
|
|
|
1212
1391
|
* Insert semicolons between lines that JS would combine [[#277](https://github.com/DanielXMoore/Civet/pull/277)]
|
|
1213
1392
|
|
|
1214
1393
|
## 0.5.51 (2023-01-22, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.50...v0.5.51), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.51))
|
|
1394
|
+
* Add simple export tests for require/import of package [[#263](https://github.com/DanielXMoore/Civet/pull/263)]
|
|
1395
|
+
* Change `is` operator to `Object.is` call [[#262](https://github.com/DanielXMoore/Civet/pull/262)]
|
|
1396
|
+
* Interface fixes [[#274](https://github.com/DanielXMoore/Civet/pull/274)]
|
|
1215
1397
|
|
|
1216
1398
|
## 0.5.50 (2023-01-21, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.49...v0.5.50), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.50))
|
|
1399
|
+
* Change `is in` operator to use `includes` method [[#261](https://github.com/DanielXMoore/Civet/pull/261)]
|
|
1400
|
+
* Braceless type = and implicit inline braceless types [[#264](https://github.com/DanielXMoore/Civet/pull/264)]
|
|
1217
1401
|
|
|
1218
1402
|
## 0.5.49 (2023-01-20, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.48...v0.5.49), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.49))
|
|
1219
1403
|
* Contributing document for getting started with Civet [[#255](https://github.com/DanielXMoore/Civet/pull/255)]
|
|
1404
|
+
* Fixes #256. Add readonly to AccessModifier [[#258](https://github.com/DanielXMoore/Civet/pull/258)]
|
|
1405
|
+
* #156. Improve TS declare lexical bindings [[#259](https://github.com/DanielXMoore/Civet/pull/259)]
|
|
1220
1406
|
|
|
1221
1407
|
## 0.5.48 (2023-01-18, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.47...v0.5.48), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.48))
|
|
1408
|
+
* Fixes #251 [[#253](https://github.com/DanielXMoore/Civet/pull/253)]
|
|
1222
1409
|
|
|
1223
1410
|
## 0.5.47 (2023-01-17, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.46...v0.5.47), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.47))
|
|
1411
|
+
* Bun civet [[#252](https://github.com/DanielXMoore/Civet/pull/252)]
|
|
1224
1412
|
|
|
1225
1413
|
## 0.5.46 (2023-01-17, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.45...v0.5.46), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.46))
|
|
1414
|
+
* Fixes #247 [[#249](https://github.com/DanielXMoore/Civet/pull/249)]
|
|
1226
1415
|
|
|
1227
1416
|
## 0.5.45 (2023-01-17, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.44...v0.5.45), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.45))
|
|
1417
|
+
* Wrap object expressions with parentheses at statement level [[#241](https://github.com/DanielXMoore/Civet/pull/241)]
|
|
1418
|
+
* `type ... from ...` import shorthand [[#244](https://github.com/DanielXMoore/Civet/pull/244)]
|
|
1419
|
+
* Import assertions [[#245](https://github.com/DanielXMoore/Civet/pull/245)]
|
|
1420
|
+
* Re-order docs to ease people into the Civet mindset [[#246](https://github.com/DanielXMoore/Civet/pull/246)]
|
|
1228
1421
|
|
|
1229
1422
|
## 0.5.44 (2023-01-16, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.43...v0.5.44), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.44))
|
|
1230
1423
|
|
|
@@ -1235,92 +1428,193 @@ as well as a full diff and commit list.
|
|
|
1235
1428
|
## 0.5.41 (2023-01-14, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.40...v0.5.41), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.41))
|
|
1236
1429
|
|
|
1237
1430
|
## 0.5.40 (2023-01-14, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.39...v0.5.40), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.40))
|
|
1431
|
+
* Fixes: #233. Dedented commas should not delimit [[#234](https://github.com/DanielXMoore/Civet/pull/234)]
|
|
1238
1432
|
* New fast JSX parser [[#235](https://github.com/DanielXMoore/Civet/pull/235)]
|
|
1433
|
+
* Fixes #228. `this` type in function parameters. [[#236](https://github.com/DanielXMoore/Civet/pull/236)]
|
|
1239
1434
|
|
|
1240
1435
|
## 0.5.39 (2023-01-13, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.38...v0.5.39), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.39))
|
|
1241
1436
|
* Fix CLI behavior especially on Unix [[#232](https://github.com/DanielXMoore/Civet/pull/232)]
|
|
1437
|
+
* Fixes #197 [[#231](https://github.com/DanielXMoore/Civet/pull/231)]
|
|
1242
1438
|
|
|
1243
1439
|
## 0.5.38 (2023-01-12, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.37...v0.5.38), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.38))
|
|
1440
|
+
* Fixes #220. We weren't popping scope stack at the end of the function :fearful: [[#223](https://github.com/DanielXMoore/Civet/pull/223)]
|
|
1441
|
+
* Fixes #221 [[#224](https://github.com/DanielXMoore/Civet/pull/224)]
|
|
1442
|
+
* Fixes #218. Optional type void => shorthand [[#225](https://github.com/DanielXMoore/Civet/pull/225)]
|
|
1443
|
+
* Fixes #160 [[#226](https://github.com/DanielXMoore/Civet/pull/226)]
|
|
1244
1444
|
|
|
1245
1445
|
## 0.5.37 (2023-01-12, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.36...v0.5.37), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.37))
|
|
1446
|
+
* Fixes #209 by not allowing whitespace before TypeArguments [[#210](https://github.com/DanielXMoore/Civet/pull/210)]
|
|
1447
|
+
* `return` from expressionized blocks [[#211](https://github.com/DanielXMoore/Civet/pull/211)]
|
|
1448
|
+
* Support TypeScript `interface extends` [[#219](https://github.com/DanielXMoore/Civet/pull/219)]
|
|
1246
1449
|
|
|
1247
1450
|
## 0.5.36 (2023-01-11, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.35...v0.5.36), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.36))
|
|
1248
1451
|
* Gulp plugin [[#206](https://github.com/DanielXMoore/Civet/pull/206)]
|
|
1452
|
+
* Docs: fix URI to base64 translation [[#208](https://github.com/DanielXMoore/Civet/pull/208)]
|
|
1453
|
+
* Fixes #205 [[#207](https://github.com/DanielXMoore/Civet/pull/207)]
|
|
1249
1454
|
|
|
1250
1455
|
## 0.5.35 (2023-01-11, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.34...v0.5.35), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.35))
|
|
1456
|
+
* Docs: Add playground page [[#198](https://github.com/DanielXMoore/Civet/pull/198)]
|
|
1457
|
+
* Docs: Fix playground [[#199](https://github.com/DanielXMoore/Civet/pull/199)]
|
|
1458
|
+
* Docs: fix playground object outputting [[#200](https://github.com/DanielXMoore/Civet/pull/200)]
|
|
1459
|
+
* Fix identifier used only in coffee for loop [[#201](https://github.com/DanielXMoore/Civet/pull/201)]
|
|
1460
|
+
* Fix register and other integration docs [[#204](https://github.com/DanielXMoore/Civet/pull/204)]
|
|
1251
1461
|
|
|
1252
1462
|
## 0.5.34 (2023-01-10, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.33...v0.5.34), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.34))
|
|
1463
|
+
* Add type guard function for compile errors [[#183](https://github.com/DanielXMoore/Civet/pull/183)]
|
|
1464
|
+
* Docs: Enhance playground error handling [[#185](https://github.com/DanielXMoore/Civet/pull/185)]
|
|
1465
|
+
* Moved :: behind coffeePrototype config flag [[#188](https://github.com/DanielXMoore/Civet/pull/188)]
|
|
1466
|
+
* Confirm that docs build in CI for PRs [[#189](https://github.com/DanielXMoore/Civet/pull/189)]
|
|
1467
|
+
* Moved CoffeeScript focus into separate document [[#191](https://github.com/DanielXMoore/Civet/pull/191)]
|
|
1468
|
+
* Fixes #192 [[#195](https://github.com/DanielXMoore/Civet/pull/195)]
|
|
1469
|
+
* #175 Added preliminary ':' -> 'as' improvement [[#186](https://github.com/DanielXMoore/Civet/pull/186)]
|
|
1470
|
+
* Fixes #194 [[#196](https://github.com/DanielXMoore/Civet/pull/196)]
|
|
1253
1471
|
|
|
1254
1472
|
## 0.5.33 (2023-01-10, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.32...v0.5.33), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.33))
|
|
1255
1473
|
* Synonyous -> synonymous [[#180](https://github.com/DanielXMoore/Civet/pull/180)]
|
|
1474
|
+
* Docs: add interactive snippets [[#172](https://github.com/DanielXMoore/Civet/pull/172)]
|
|
1475
|
+
* Docs: fix playground server side rendering [[#181](https://github.com/DanielXMoore/Civet/pull/181)]
|
|
1476
|
+
* Docs: Fix mobile playground [[#182](https://github.com/DanielXMoore/Civet/pull/182)]
|
|
1477
|
+
* + extra pipeline example [[#184](https://github.com/DanielXMoore/Civet/pull/184)]
|
|
1256
1478
|
|
|
1257
1479
|
## 0.5.32 (2023-01-09, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.31...v0.5.32), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.32))
|
|
1258
1480
|
|
|
1259
1481
|
## 0.5.31 (2023-01-09, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.30...v0.5.31), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.31))
|
|
1482
|
+
* Try expression [[#173](https://github.com/DanielXMoore/Civet/pull/173)]
|
|
1483
|
+
* Fixes #51 [[#178](https://github.com/DanielXMoore/Civet/pull/178)]
|
|
1260
1484
|
|
|
1261
1485
|
## 0.5.30 (2023-01-08, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.29...v0.5.30), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.30))
|
|
1262
1486
|
|
|
1263
1487
|
## 0.5.29 (2023-01-08, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.28...v0.5.29), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.29))
|
|
1488
|
+
* Fix inline ifs [[#171](https://github.com/DanielXMoore/Civet/pull/171)]
|
|
1264
1489
|
|
|
1265
1490
|
## 0.5.28 (2023-01-08, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.27...v0.5.28), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.28))
|
|
1491
|
+
* Function declarations without parentheses [[#159](https://github.com/DanielXMoore/Civet/pull/159)]
|
|
1266
1492
|
* Create directory in `-o` option if it doesn't exist [[#164](https://github.com/DanielXMoore/Civet/pull/164)]
|
|
1493
|
+
* Fix array parsing bug [[#168](https://github.com/DanielXMoore/Civet/pull/168)]
|
|
1267
1494
|
|
|
1268
1495
|
## 0.5.27 (2023-01-07, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.26...v0.5.27), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.27))
|
|
1496
|
+
* Support initializers in type parameters [[#149](https://github.com/DanielXMoore/Civet/pull/149)]
|
|
1497
|
+
* Support `import`/`export` `type`/`{type}` [[#151](https://github.com/DanielXMoore/Civet/pull/151)]
|
|
1498
|
+
* Compilation and AST modes for REPL [[#148](https://github.com/DanielXMoore/Civet/pull/148)]
|
|
1499
|
+
* Improve extends '<' shorthand [[#152](https://github.com/DanielXMoore/Civet/pull/152)]
|
|
1500
|
+
* `yarn build` before building docs locally [[#153](https://github.com/DanielXMoore/Civet/pull/153)]
|
|
1269
1501
|
|
|
1270
1502
|
## 0.5.26 (2023-01-06, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.25...v0.5.26), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.26))
|
|
1271
1503
|
* New Playground tag in docs [[#125](https://github.com/DanielXMoore/Civet/pull/125)]
|
|
1504
|
+
* JSX +- toggles like LiveScript object literals [[#135](https://github.com/DanielXMoore/Civet/pull/135)]
|
|
1505
|
+
* Expanded LiveScript toggles to include ! and added ! to JSX attribute toggle shorthand [[#136](https://github.com/DanielXMoore/Civet/pull/136)]
|
|
1272
1506
|
* Docs: fix code examples rendering [[#140](https://github.com/DanielXMoore/Civet/pull/140)]
|
|
1507
|
+
* Docs: add sponsors [[#141](https://github.com/DanielXMoore/Civet/pull/141)]
|
|
1508
|
+
* JSX implicit fragments [[#139](https://github.com/DanielXMoore/Civet/pull/139)]
|
|
1273
1509
|
|
|
1274
1510
|
## 0.5.25 (2023-01-06, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.24...v0.5.25), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.25))
|
|
1511
|
+
* Avoid object literal calls with class extends [[#131](https://github.com/DanielXMoore/Civet/pull/131)]
|
|
1275
1512
|
* Fix for nested JSX if else expressions [[#133](https://github.com/DanielXMoore/Civet/pull/133)]
|
|
1513
|
+
* ESM build and refactoring [[#134](https://github.com/DanielXMoore/Civet/pull/134)]
|
|
1276
1514
|
|
|
1277
1515
|
## 0.5.24 (2023-01-06, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.23...v0.5.24), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.24))
|
|
1516
|
+
* Document void return to avoid implicit return [[#123](https://github.com/DanielXMoore/Civet/pull/123)]
|
|
1517
|
+
* Add missing NonIdContinue after keywords [[#130](https://github.com/DanielXMoore/Civet/pull/130)]
|
|
1518
|
+
* New operators: is not, is in, is not in, not in [[#124](https://github.com/DanielXMoore/Civet/pull/124)]
|
|
1519
|
+
* Positive modulo operator %% [[#132](https://github.com/DanielXMoore/Civet/pull/132)]
|
|
1278
1520
|
|
|
1279
1521
|
## 0.5.23 (2023-01-05, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.22...v0.5.23), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.23))
|
|
1522
|
+
* Several more examples for docs [[#119](https://github.com/DanielXMoore/Civet/pull/119)]
|
|
1523
|
+
* Document how to import and that TS code is valid input [[#121](https://github.com/DanielXMoore/Civet/pull/121)]
|
|
1524
|
+
* CLI support for running script with arguments [[#122](https://github.com/DanielXMoore/Civet/pull/122)]
|
|
1280
1525
|
|
|
1281
1526
|
## 0.5.22 (2023-01-05, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.21...v0.5.22), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.22))
|
|
1527
|
+
* Update docs [[#115](https://github.com/DanielXMoore/Civet/pull/115)]
|
|
1528
|
+
* Improve CLI documentation [[#116](https://github.com/DanielXMoore/Civet/pull/116)]
|
|
1529
|
+
* Register fixes [[#117](https://github.com/DanielXMoore/Civet/pull/117)]
|
|
1282
1530
|
|
|
1283
1531
|
## 0.5.21 (2023-01-04, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.20...v0.5.21), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.21))
|
|
1532
|
+
* Add docs [[#110](https://github.com/DanielXMoore/Civet/pull/110)]
|
|
1533
|
+
* Document implicit return features [[#111](https://github.com/DanielXMoore/Civet/pull/111)]
|
|
1534
|
+
* Docs update [[#112](https://github.com/DanielXMoore/Civet/pull/112)]
|
|
1535
|
+
* Auto let Fix [[#105](https://github.com/DanielXMoore/Civet/pull/105)]
|
|
1284
1536
|
|
|
1285
1537
|
## 0.5.20 (2023-01-03, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.19...v0.5.20), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.20))
|
|
1538
|
+
* Document let shorthand [[#107](https://github.com/DanielXMoore/Civet/pull/107)]
|
|
1539
|
+
* Support `|> return` and document pipes [[#106](https://github.com/DanielXMoore/Civet/pull/106)]
|
|
1540
|
+
* Class shorthand optimizations [[#108](https://github.com/DanielXMoore/Civet/pull/108)]
|
|
1541
|
+
* Avoid implicit return via trailing semicolon [[#109](https://github.com/DanielXMoore/Civet/pull/109)]
|
|
1286
1542
|
|
|
1287
1543
|
## 0.5.19 (2022-12-31, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.18...v0.5.19), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.19))
|
|
1544
|
+
* Insert Final Newline setting for VSCode [[#101](https://github.com/DanielXMoore/Civet/pull/101)]
|
|
1545
|
+
* XML comment support within JSX [[#102](https://github.com/DanielXMoore/Civet/pull/102)]
|
|
1288
1546
|
|
|
1289
1547
|
## 0.5.18 (2022-12-30, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.16...v0.5.18), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.18))
|
|
1548
|
+
* Fix CLI behavior on Windows [[#96](https://github.com/DanielXMoore/Civet/pull/96)]
|
|
1549
|
+
* Filter combined JSX classes [[#100](https://github.com/DanielXMoore/Civet/pull/100)]
|
|
1550
|
+
* New CLI including REPL [[#99](https://github.com/DanielXMoore/Civet/pull/99)]
|
|
1290
1551
|
|
|
1291
1552
|
## 0.5.16 (2022-12-29, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.15...v0.5.16), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.16))
|
|
1553
|
+
* JSX #id and .class shorthands [[#95](https://github.com/DanielXMoore/Civet/pull/95)]
|
|
1292
1554
|
|
|
1293
1555
|
## 0.5.15 (2022-12-29, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.14...v0.5.15), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.15))
|
|
1556
|
+
* Use Set to represent uncacheable rules [[#90](https://github.com/DanielXMoore/Civet/pull/90)]
|
|
1557
|
+
* Fix indentation JSX within attributes [[#92](https://github.com/DanielXMoore/Civet/pull/92)]
|
|
1558
|
+
* Better support for multi-tsconfig projects [[#91](https://github.com/DanielXMoore/Civet/pull/91)]
|
|
1559
|
+
* Bump json5 from 2.2.1 to 2.2.2 in /lsp [[#93](https://github.com/DanielXMoore/Civet/pull/93)]
|
|
1560
|
+
* Bump json5 from 2.2.1 to 2.2.2 [[#94](https://github.com/DanielXMoore/Civet/pull/94)]
|
|
1294
1561
|
|
|
1295
1562
|
## 0.5.14 (2022-12-29, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.13...v0.5.14), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.14))
|
|
1563
|
+
* JSX arrow functions don't need braces [[#89](https://github.com/DanielXMoore/Civet/pull/89)]
|
|
1296
1564
|
|
|
1297
1565
|
## 0.5.13 (2022-12-29, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.12...v0.5.13), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.13))
|
|
1566
|
+
* Don't deploy civet.dev website from forks [[#87](https://github.com/DanielXMoore/Civet/pull/87)]
|
|
1298
1567
|
|
|
1299
1568
|
## 0.5.12 (2022-12-26, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.11...v0.5.12), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.12))
|
|
1569
|
+
* Fix function application with implicit object [[#84](https://github.com/DanielXMoore/Civet/pull/84)]
|
|
1570
|
+
* Implicit dynamic import() [[#86](https://github.com/DanielXMoore/Civet/pull/86)]
|
|
1300
1571
|
|
|
1301
1572
|
## 0.5.11 (2022-12-25, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.10...v0.5.11), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.11))
|
|
1573
|
+
* Class enhancements: Support abstract & readonly [[#82](https://github.com/DanielXMoore/Civet/pull/82)]
|
|
1574
|
+
* Add support for |> pipelines [[#83](https://github.com/DanielXMoore/Civet/pull/83)]
|
|
1302
1575
|
|
|
1303
1576
|
## 0.5.10 (2022-12-23, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.9...v0.5.10), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.10))
|
|
1304
1577
|
|
|
1305
1578
|
## 0.5.9 (2022-12-23, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.8...v0.5.9), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.9))
|
|
1579
|
+
* Support access modifiers (public/protected/private) [[#80](https://github.com/DanielXMoore/Civet/pull/80)]
|
|
1306
1580
|
|
|
1307
1581
|
## 0.5.8 (2022-12-22, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.7...v0.5.8), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.8))
|
|
1582
|
+
* Link to GitHub repo from civet.dev [[#78](https://github.com/DanielXMoore/Civet/pull/78)]
|
|
1308
1583
|
|
|
1309
1584
|
## 0.5.7 (2022-12-20, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.6...v0.5.7), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.7))
|
|
1310
1585
|
|
|
1311
1586
|
## 0.5.6 (2022-12-20, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.5...v0.5.6), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.6))
|
|
1587
|
+
* Link to starter templates for Solid [Start] [[#69](https://github.com/DanielXMoore/Civet/pull/69)]
|
|
1588
|
+
* Clarify that comma operator works in `for` [[#70](https://github.com/DanielXMoore/Civet/pull/70)]
|
|
1589
|
+
* Link to Vite, esbuild, ESM plugins [[#71](https://github.com/DanielXMoore/Civet/pull/71)]
|
|
1590
|
+
* Super property access [[#73](https://github.com/DanielXMoore/Civet/pull/73)]
|
|
1591
|
+
* Fix autoLet will redeclare the variable explicit declared [[#74](https://github.com/DanielXMoore/Civet/pull/74)]
|
|
1592
|
+
* Allow type annotation in catch clause [[#76](https://github.com/DanielXMoore/Civet/pull/76)]
|
|
1593
|
+
* Allow decorators on static methods/fields and properties [[#77](https://github.com/DanielXMoore/Civet/pull/77)]
|
|
1312
1594
|
|
|
1313
1595
|
## 0.5.5 (2022-12-18, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.4...v0.5.5), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.5))
|
|
1596
|
+
* Typed JSX elements/fragments for Solid [[#68](https://github.com/DanielXMoore/Civet/pull/68)]
|
|
1314
1597
|
|
|
1315
1598
|
## 0.5.4 (2022-12-18, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.3...v0.5.4), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.4))
|
|
1599
|
+
* Fix multi-line JSX fragments [[#67](https://github.com/DanielXMoore/Civet/pull/67)]
|
|
1316
1600
|
|
|
1317
1601
|
## 0.5.3 (2022-12-17, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.2...v0.5.3), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.3))
|
|
1602
|
+
* Refactor ref making [[#63](https://github.com/DanielXMoore/Civet/pull/63)]
|
|
1603
|
+
* Fix singleton TypeParameters compatibility with TSX [[#65](https://github.com/DanielXMoore/Civet/pull/65)]
|
|
1604
|
+
* Support type parameters in JSX tag names [[#66](https://github.com/DanielXMoore/Civet/pull/66)]
|
|
1318
1605
|
|
|
1319
1606
|
## 0.5.2 (2022-12-17, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.1...v0.5.2), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.2))
|
|
1607
|
+
* JSX `...foo` shorthand for `{...foo}` [[#62](https://github.com/DanielXMoore/Civet/pull/62)]
|
|
1320
1608
|
|
|
1321
1609
|
## 0.5.1 (2022-12-16, [diff](https://github.com/DanielXMoore/Civet/compare/v0.5.0...v0.5.1), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.1))
|
|
1610
|
+
* support typescript `satisfies` [[#56](https://github.com/DanielXMoore/Civet/pull/56)]
|
|
1611
|
+
* Default to tsx extension for transpiled files [[#57](https://github.com/DanielXMoore/Civet/pull/57)]
|
|
1322
1612
|
|
|
1323
1613
|
## 0.5.0 (2022-12-14, [diff](https://github.com/DanielXMoore/Civet/compare/v0.4.38...v0.5.0), [commits](https://github.com/DanielXMoore/Civet/commits/v0.5.0))
|
|
1614
|
+
* README cleanup [[#44](https://github.com/DanielXMoore/Civet/pull/44)]
|
|
1615
|
+
* Support whitespace-free JSX attributes [[#45](https://github.com/DanielXMoore/Civet/pull/45)]
|
|
1616
|
+
* Omit type parameters in js output [[#41](https://github.com/DanielXMoore/Civet/pull/41)]
|
|
1617
|
+
* Add autolet [[#43](https://github.com/DanielXMoore/Civet/pull/43)]
|
|
1324
1618
|
|
|
1325
1619
|
## 0.4.38 (2022-12-13, [diff](https://github.com/DanielXMoore/Civet/compare/v0.4.37...v0.4.38), [commits](https://github.com/DanielXMoore/Civet/commits/v0.4.38))
|
|
1326
1620
|
|
|
@@ -1329,16 +1623,26 @@ as well as a full diff and commit list.
|
|
|
1329
1623
|
## 0.4.36 (2022-12-13, [diff](https://github.com/DanielXMoore/Civet/compare/v0.4.35...v0.4.36), [commits](https://github.com/DanielXMoore/Civet/commits/v0.4.36))
|
|
1330
1624
|
|
|
1331
1625
|
## 0.4.35 (2022-12-12, [diff](https://github.com/DanielXMoore/Civet/compare/v0.4.34...v0.4.35), [commits](https://github.com/DanielXMoore/Civet/commits/v0.4.35))
|
|
1626
|
+
* Document JSX object literal enhancement [[#36](https://github.com/DanielXMoore/Civet/pull/36)]
|
|
1627
|
+
* Support content on same line as <> [[#37](https://github.com/DanielXMoore/Civet/pull/37)]
|
|
1628
|
+
* Support for many unbraced JSX attribute values [[#38](https://github.com/DanielXMoore/Civet/pull/38)]
|
|
1629
|
+
* Support computed JSX attribute names [[#39](https://github.com/DanielXMoore/Civet/pull/39)]
|
|
1332
1630
|
|
|
1333
1631
|
## 0.4.34 (2022-12-12, [diff](https://github.com/DanielXMoore/Civet/compare/v0.4.33...v0.4.34), [commits](https://github.com/DanielXMoore/Civet/commits/v0.4.34))
|
|
1632
|
+
* Support type args in classes [[#34](https://github.com/DanielXMoore/Civet/pull/34)]
|
|
1334
1633
|
|
|
1335
1634
|
## 0.4.33 (2022-12-11, [diff](https://github.com/DanielXMoore/Civet/compare/v0.4.32...v0.4.33), [commits](https://github.com/DanielXMoore/Civet/commits/v0.4.33))
|
|
1336
1635
|
|
|
1337
1636
|
## 0.4.32 (2022-12-11, [diff](https://github.com/DanielXMoore/Civet/compare/v0.4.31...v0.4.32), [commits](https://github.com/DanielXMoore/Civet/commits/v0.4.32))
|
|
1338
1637
|
|
|
1339
1638
|
## 0.4.31 (2022-12-11, [diff](https://github.com/DanielXMoore/Civet/compare/v0.4.28...v0.4.31), [commits](https://github.com/DanielXMoore/Civet/commits/v0.4.31))
|
|
1639
|
+
* LSP: Update other documents asynchronously when content gets updated [[#29](https://github.com/DanielXMoore/Civet/pull/29)]
|
|
1640
|
+
* JSX object shorthand [[#32](https://github.com/DanielXMoore/Civet/pull/32)]
|
|
1641
|
+
* Indentation in middle of arrays [[#33](https://github.com/DanielXMoore/Civet/pull/33)]
|
|
1340
1642
|
|
|
1341
1643
|
## 0.4.28 (2022-12-10, [diff](https://github.com/DanielXMoore/Civet/compare/v0.4.27...v0.4.28), [commits](https://github.com/DanielXMoore/Civet/commits/v0.4.28))
|
|
1644
|
+
* Add Discord link and NPM badges [[#28](https://github.com/DanielXMoore/Civet/pull/28)]
|
|
1645
|
+
* Indentation-based JSX [[#25](https://github.com/DanielXMoore/Civet/pull/25)]
|
|
1342
1646
|
|
|
1343
1647
|
## 0.4.27 (2022-12-10, [diff](https://github.com/DanielXMoore/Civet/compare/v0.4.26...v0.4.27), [commits](https://github.com/DanielXMoore/Civet/commits/v0.4.27))
|
|
1344
1648
|
|
|
@@ -1347,6 +1651,7 @@ as well as a full diff and commit list.
|
|
|
1347
1651
|
## 0.4.25 (2022-12-10, [diff](https://github.com/DanielXMoore/Civet/compare/v0.4.24...v0.4.25), [commits](https://github.com/DanielXMoore/Civet/commits/v0.4.25))
|
|
1348
1652
|
|
|
1349
1653
|
## 0.4.24 (2022-12-10, [diff](https://github.com/DanielXMoore/Civet/compare/v0.4.23...v0.4.24), [commits](https://github.com/DanielXMoore/Civet/commits/v0.4.24))
|
|
1654
|
+
* Indentation flexibility [[#26](https://github.com/DanielXMoore/Civet/pull/26)]
|
|
1350
1655
|
|
|
1351
1656
|
## 0.4.23 (2022-12-08, [diff](https://github.com/DanielXMoore/Civet/compare/v0.4.22...v0.4.23), [commits](https://github.com/DanielXMoore/Civet/commits/v0.4.23))
|
|
1352
1657
|
* CoffeeScript export to-do [[#22](https://github.com/DanielXMoore/Civet/pull/22)]
|
|
@@ -1422,6 +1727,7 @@ as well as a full diff and commit list.
|
|
|
1422
1727
|
## 0.4.8 (2022-10-11, [diff](https://github.com/DanielXMoore/Civet/compare/v0.4.7...v0.4.8), [commits](https://github.com/DanielXMoore/Civet/commits/v0.4.8))
|
|
1423
1728
|
|
|
1424
1729
|
## 0.4.7 (2022-10-10, [diff](https://github.com/DanielXMoore/Civet/compare/v0.4.6...v0.4.7), [commits](https://github.com/DanielXMoore/Civet/commits/v0.4.7))
|
|
1730
|
+
* Implicit returns [[#2](https://github.com/DanielXMoore/Civet/pull/2)]
|
|
1425
1731
|
|
|
1426
1732
|
## 0.4.6 (2022-10-01, [diff](https://github.com/DanielXMoore/Civet/compare/v0.4.5...v0.4.6), [commits](https://github.com/DanielXMoore/Civet/commits/v0.4.6))
|
|
1427
1733
|
|