Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changeset/big-swans-applaud.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/quick-coins-joke.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/small-windows-beg.md

This file was deleted.

2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions packages/lit-analyzer/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion packages/lit-analyzer/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion packages/lit-analyzer/src/lib/analyze/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Loading