diff --git a/.changeset/big-swans-applaud.md b/.changeset/big-swans-applaud.md deleted file mode 100644 index 10716834..00000000 --- a/.changeset/big-swans-applaud.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@jackolope/lit-analyzer": patch ---- - -Update parse5 logic to use the built-in types instead of custom ones diff --git a/.changeset/quick-coins-joke.md b/.changeset/quick-coins-joke.md deleted file mode 100644 index e542efc9..00000000 --- a/.changeset/quick-coins-joke.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@jackolope/lit-analyzer": patch ---- - -fix: Take the presence of converter functions into account for attributes with no-complex-attribute-binding and no-incompatible-type-binding rules diff --git a/.changeset/small-windows-beg.md b/.changeset/small-windows-beg.md deleted file mode 100644 index 24fc54e7..00000000 --- a/.changeset/small-windows-beg.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"lit-analyzer-fork": patch ---- - -Fix dependency visiting logic to exclude imports with type-only bindings diff --git a/package-lock.json b/package-lock.json index be05fceb..91efa46c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -10693,7 +10693,7 @@ }, "packages/lit-analyzer": { "name": "@jackolope/lit-analyzer", - "version": "3.0.0", + "version": "3.0.1", "license": "MIT", "dependencies": { "@jackolope/web-component-analyzer": "^3.0.0", diff --git a/packages/lit-analyzer/CHANGELOG.md b/packages/lit-analyzer/CHANGELOG.md index 7a44545b..f4f0a90e 100644 --- a/packages/lit-analyzer/CHANGELOG.md +++ b/packages/lit-analyzer/CHANGELOG.md @@ -1,5 +1,15 @@ # @jackolope/lit-analyzer +## 3.0.1 + +### Patch Changes + +- [#133](https://github.com/JackRobards/lit-analyzer/pull/133) [`37332b5`](https://github.com/JackRobards/lit-analyzer/commit/37332b5843034cb7a30575b93ec5b5d13dc7a65c) Thanks [@JackRobards](https://github.com/JackRobards)! - Update parse5 logic to use the built-in types instead of custom ones + +- [#135](https://github.com/JackRobards/lit-analyzer/pull/135) [`63ee9f6`](https://github.com/JackRobards/lit-analyzer/commit/63ee9f6ab488927d2e464b039014d62ac9793ec9) Thanks [@JackRobards](https://github.com/JackRobards)! - fix: Take the presence of converter functions into account for attributes with no-complex-attribute-binding and no-incompatible-type-binding rules + +- [#111](https://github.com/JackRobards/lit-analyzer/pull/111) [`4322ba8`](https://github.com/JackRobards/lit-analyzer/commit/4322ba8f51207609eadb2d6f05c303b00274355c) Thanks [@JackRobards](https://github.com/JackRobards)! - Fix dependency visiting logic to exclude imports with type-only bindings + ## 3.0.0 ### Major Changes diff --git a/packages/lit-analyzer/package.json b/packages/lit-analyzer/package.json index 1347f86a..73f61656 100644 --- a/packages/lit-analyzer/package.json +++ b/packages/lit-analyzer/package.json @@ -1,6 +1,6 @@ { "name": "@jackolope/lit-analyzer", - "version": "3.0.0", + "version": "3.0.1", "description": "CLI that type checks bindings in lit-html templates", "author": "runem", "license": "MIT", diff --git a/packages/lit-analyzer/src/lib/analyze/constants.ts b/packages/lit-analyzer/src/lib/analyze/constants.ts index 80b4f592..cd0688af 100644 --- a/packages/lit-analyzer/src/lib/analyze/constants.ts +++ b/packages/lit-analyzer/src/lib/analyze/constants.ts @@ -16,6 +16,6 @@ export const DIAGNOSTIC_SOURCE = "lit-analyzer-plugin"; export const TS_IGNORE_FLAG = "@ts-ignore"; -export const VERSION = "3.0.0"; +export const VERSION = "3.0.1"; export const MAX_RUNNING_TIME_PER_OPERATION = 150; // Default to small timeouts. Opt in to larger timeouts where necessary.