diff --git a/.changeset/breezy-toes-attack.md b/.changeset/breezy-toes-attack.md deleted file mode 100644 index b87eb725..00000000 --- a/.changeset/breezy-toes-attack.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -"@jackolope/lit-analyzer": minor -"@jackolope/ts-lit-plugin": minor -"lit-plugin": minor -"@jackolope/web-component-analyzer": minor ---- - -Bulk Minor/Patch Changes - -- Upgrade the html and css language service packages, so that the plugin can detect the latest features. -- Generally, all packages have been upgraded in (or uninstalled from) the repo. This includes a number of security fixes, and many of these PRs were handled by Dependabot. -- fix: Exclude symbol when checking binding types: https://github.com/JackRobards/lit-analyzer/pull/107. - -Dev related (doesn't effect consumers): - -- Migrate to npm workspaces: https://github.com/JackRobards/lit-analyzer/pull/28. -- The web-component-analyzer repo has also been forked, and is no included in this monorepo: https://github.com/JackRobards/lit-analyzer/pull/59. -- Upgrade and fix the broken .github scripts to build on PRs: https://github.com/JackRobards/lit-analyzer/pull/4 and https://github.com/JackRobards/lit-analyzer/pull/5. -- Migrate repository to new ESLint flat config: https://github.com/JackRobards/lit-analyzer/pull/99. -- Upgrade ava testing package to the latest version (required some manual changes): https://github.com/JackRobards/lit-analyzer/pull/8. -- Dependabot is now active in this repo, to help keep it up to date with new releases. -- In future release notes, not all of these dev-related changes will be included in the changelog. For this initial release, they are included to help track what all has been updated with this fork. diff --git a/.changeset/chilled-planets-hug.md b/.changeset/chilled-planets-hug.md deleted file mode 100644 index 42a1f6f5..00000000 --- a/.changeset/chilled-planets-hug.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@jackolope/web-component-analyzer": minor -"@jackolope/lit-analyzer": minor ---- - -Support tag names which are static class properties or variables with no-missing-element-type-definition rule" diff --git a/.changeset/eighty-pianos-cross.md b/.changeset/eighty-pianos-cross.md deleted file mode 100644 index d319e92a..00000000 --- a/.changeset/eighty-pianos-cross.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@jackolope/lit-analyzer": patch ---- - -Return type hint information if it is available for html-tag diff --git a/.changeset/lemon-fans-scream.md b/.changeset/lemon-fans-scream.md deleted file mode 100644 index 6d33479c..00000000 --- a/.changeset/lemon-fans-scream.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@jackolope/lit-analyzer": patch ---- - -Fix ifDefined logic to exclude null from the return type, instead of just undefined diff --git a/.changeset/long-ducks-shave.md b/.changeset/long-ducks-shave.md deleted file mode 100644 index a86d40a4..00000000 --- a/.changeset/long-ducks-shave.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -"@jackolope/lit-analyzer": major -"@jackolope/ts-lit-plugin": major -"lit-plugin": major -"@jackolope/web-component-analyzer": major ---- - -Major (Breaking) changes: - -- Upgrade Supported Node versions to 18, 20, and 22: https://github.com/JackRobards/lit-analyzer/pull/27. -- Upgrade to the latest version of vsce, for building and publishing the VSCode Extension: https://github.com/JackRobards/lit-analyzer/pull/45 and https://github.com/JackRobards/lit-analyzer/pull/47. -- Upgrade TypeScript Versions tested against to 5.4, 5.5, 5.6, 5.7 (previously it was 4.8 - 5.2): https://github.com/JackRobards/lit-analyzer/pull/75. -- Upgrade tsconfig to target es2023 and the NodeNext module. Previously it was targeting es5 and commonjs: https://github.com/JackRobards/lit-analyzer/pull/95. -- NPM Packages renamed to have be prefixed with @jackolope user scope: https://github.com/JackRobards/lit-analyzer/pull/114 and https://github.com/JackRobards/lit-analyzer/pull/94. diff --git a/.changeset/shiny-flowers-appear.md b/.changeset/shiny-flowers-appear.md deleted file mode 100644 index aca7e06c..00000000 --- a/.changeset/shiny-flowers-appear.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@jackolope/lit-analyzer": minor ---- - -Convert lit-analyzer CLI to ESM diff --git a/.changeset/twenty-dancers-shake.md b/.changeset/twenty-dancers-shake.md deleted file mode 100644 index 36544aed..00000000 --- a/.changeset/twenty-dancers-shake.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -"@jackolope/web-component-analyzer": patch -"@jackolope/lit-analyzer": patch -"@jackolope/ts-lit-plugin": patch -"lit-plugin": patch ---- - -Uninstall Lerna package from repo diff --git a/.changeset/wise-grapes-applaud.md b/.changeset/wise-grapes-applaud.md deleted file mode 100644 index 2d86db5e..00000000 --- a/.changeset/wise-grapes-applaud.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@jackolope/lit-analyzer": patch ---- - -Rework no-unclosed-tag rule to improve to cleanly check for begining and ending tags diff --git a/packages/lit-analyzer/CHANGELOG.md b/packages/lit-analyzer/CHANGELOG.md new file mode 100644 index 00000000..7a44545b --- /dev/null +++ b/packages/lit-analyzer/CHANGELOG.md @@ -0,0 +1,48 @@ +# @jackolope/lit-analyzer + +## 3.0.0 + +### Major Changes + +- [#125](https://github.com/JackRobards/lit-analyzer/pull/125) [`e85bdaf`](https://github.com/JackRobards/lit-analyzer/commit/e85bdafe871bcac2d4a89da64fc2c1d4b8b78bd9) Thanks [@JackRobards](https://github.com/JackRobards)! - Major (Breaking) changes: + + - Upgrade Supported Node versions to 18, 20, and 22: https://github.com/JackRobards/lit-analyzer/pull/27. + - Upgrade to the latest version of vsce, for building and publishing the VSCode Extension: https://github.com/JackRobards/lit-analyzer/pull/45 and https://github.com/JackRobards/lit-analyzer/pull/47. + - Upgrade TypeScript Versions tested against to 5.4, 5.5, 5.6, 5.7 (previously it was 4.8 - 5.2): https://github.com/JackRobards/lit-analyzer/pull/75. + - Upgrade tsconfig to target es2023 and the NodeNext module. Previously it was targeting es5 and commonjs: https://github.com/JackRobards/lit-analyzer/pull/95. + - NPM Packages renamed to have be prefixed with @jackolope user scope: https://github.com/JackRobards/lit-analyzer/pull/114 and https://github.com/JackRobards/lit-analyzer/pull/94. + +### Minor Changes + +- [#125](https://github.com/JackRobards/lit-analyzer/pull/125) [`e85bdaf`](https://github.com/JackRobards/lit-analyzer/commit/e85bdafe871bcac2d4a89da64fc2c1d4b8b78bd9) Thanks [@JackRobards](https://github.com/JackRobards)! - Bulk Minor/Patch Changes + + - Upgrade the html and css language service packages, so that the plugin can detect the latest features. + - Generally, all packages have been upgraded in (or uninstalled from) the repo. This includes a number of security fixes, and many of these PRs were handled by Dependabot. + - fix: Exclude symbol when checking binding types: https://github.com/JackRobards/lit-analyzer/pull/107. + + Dev related (doesn't effect consumers): + + - Migrate to npm workspaces: https://github.com/JackRobards/lit-analyzer/pull/28. + - The web-component-analyzer repo has also been forked, and is no included in this monorepo: https://github.com/JackRobards/lit-analyzer/pull/59. + - Upgrade and fix the broken .github scripts to build on PRs: https://github.com/JackRobards/lit-analyzer/pull/4 and https://github.com/JackRobards/lit-analyzer/pull/5. + - Migrate repository to new ESLint flat config: https://github.com/JackRobards/lit-analyzer/pull/99. + - Upgrade ava testing package to the latest version (required some manual changes): https://github.com/JackRobards/lit-analyzer/pull/8. + - Dependabot is now active in this repo, to help keep it up to date with new releases. + - In future release notes, not all of these dev-related changes will be included in the changelog. For this initial release, they are included to help track what all has been updated with this fork. + +- [#108](https://github.com/JackRobards/lit-analyzer/pull/108) [`f84df34`](https://github.com/JackRobards/lit-analyzer/commit/f84df34e9da2a17565a30b1984fa3a546ff1b92f) Thanks [@JackRobards](https://github.com/JackRobards)! - Support tag names which are static class properties or variables with no-missing-element-type-definition rule" + +- [#120](https://github.com/JackRobards/lit-analyzer/pull/120) [`df2021e`](https://github.com/JackRobards/lit-analyzer/commit/df2021e19af5ff815ddcba3f6a324d05a67217b8) Thanks [@JackRobards](https://github.com/JackRobards)! - Convert lit-analyzer CLI to ESM + +### Patch Changes + +- [#106](https://github.com/JackRobards/lit-analyzer/pull/106) [`01850fc`](https://github.com/JackRobards/lit-analyzer/commit/01850fc4af0b6ab2a1ded0e5468fdb7138f50991) Thanks [@JackRobards](https://github.com/JackRobards)! - Return type hint information if it is available for html-tag + +- [#112](https://github.com/JackRobards/lit-analyzer/pull/112) [`4514067`](https://github.com/JackRobards/lit-analyzer/commit/4514067e6e7b959c479692aa97b24692bd313a24) Thanks [@JackRobards](https://github.com/JackRobards)! - Fix ifDefined logic to exclude null from the return type, instead of just undefined + +- [#102](https://github.com/JackRobards/lit-analyzer/pull/102) [`64ac2a1`](https://github.com/JackRobards/lit-analyzer/commit/64ac2a1a4cb81edb46833b8e60e6624a136e7074) Thanks [@JackRobards](https://github.com/JackRobards)! - Uninstall Lerna package from repo + +- [#109](https://github.com/JackRobards/lit-analyzer/pull/109) [`01a6282`](https://github.com/JackRobards/lit-analyzer/commit/01a6282a797681a0146c7950f3d85113c80717d0) Thanks [@JackRobards](https://github.com/JackRobards)! - Rework no-unclosed-tag rule to improve to cleanly check for begining and ending tags + +- Updated dependencies [[`e85bdaf`](https://github.com/JackRobards/lit-analyzer/commit/e85bdafe871bcac2d4a89da64fc2c1d4b8b78bd9), [`f84df34`](https://github.com/JackRobards/lit-analyzer/commit/f84df34e9da2a17565a30b1984fa3a546ff1b92f), [`e85bdaf`](https://github.com/JackRobards/lit-analyzer/commit/e85bdafe871bcac2d4a89da64fc2c1d4b8b78bd9), [`64ac2a1`](https://github.com/JackRobards/lit-analyzer/commit/64ac2a1a4cb81edb46833b8e60e6624a136e7074)]: + - @jackolope/web-component-analyzer@3.0.0 diff --git a/packages/lit-analyzer/package.json b/packages/lit-analyzer/package.json index 69af2574..664107e4 100644 --- a/packages/lit-analyzer/package.json +++ b/packages/lit-analyzer/package.json @@ -1,6 +1,6 @@ { "name": "@jackolope/lit-analyzer", - "version": "2.0.3", + "version": "3.0.0", "description": "CLI that type checks bindings in lit-html templates", "author": "runem", "license": "MIT", @@ -98,7 +98,7 @@ "ts-simple-type": "~2.0.0-next.0", "vscode-css-languageservice": "6.3.2", "vscode-html-languageservice": "5.3.1", - "@jackolope/web-component-analyzer": "^2.0.0" + "@jackolope/web-component-analyzer": "^3.0.0" }, "devDependencies": { "@types/node": "^22.10.7", diff --git a/packages/ts-lit-plugin/CHANGELOG.md b/packages/ts-lit-plugin/CHANGELOG.md new file mode 100644 index 00000000..cde668e5 --- /dev/null +++ b/packages/ts-lit-plugin/CHANGELOG.md @@ -0,0 +1,39 @@ +# @jackolope/ts-lit-plugin + +## 3.0.0 + +### Major Changes + +- [#125](https://github.com/JackRobards/lit-analyzer/pull/125) [`e85bdaf`](https://github.com/JackRobards/lit-analyzer/commit/e85bdafe871bcac2d4a89da64fc2c1d4b8b78bd9) Thanks [@JackRobards](https://github.com/JackRobards)! - Major (Breaking) changes: + + - Upgrade Supported Node versions to 18, 20, and 22: https://github.com/JackRobards/lit-analyzer/pull/27. + - Upgrade to the latest version of vsce, for building and publishing the VSCode Extension: https://github.com/JackRobards/lit-analyzer/pull/45 and https://github.com/JackRobards/lit-analyzer/pull/47. + - Upgrade TypeScript Versions tested against to 5.4, 5.5, 5.6, 5.7 (previously it was 4.8 - 5.2): https://github.com/JackRobards/lit-analyzer/pull/75. + - Upgrade tsconfig to target es2023 and the NodeNext module. Previously it was targeting es5 and commonjs: https://github.com/JackRobards/lit-analyzer/pull/95. + - NPM Packages renamed to have be prefixed with @jackolope user scope: https://github.com/JackRobards/lit-analyzer/pull/114 and https://github.com/JackRobards/lit-analyzer/pull/94. + +### Minor Changes + +- [#125](https://github.com/JackRobards/lit-analyzer/pull/125) [`e85bdaf`](https://github.com/JackRobards/lit-analyzer/commit/e85bdafe871bcac2d4a89da64fc2c1d4b8b78bd9) Thanks [@JackRobards](https://github.com/JackRobards)! - Bulk Minor/Patch Changes + + - Upgrade the html and css language service packages, so that the plugin can detect the latest features. + - Generally, all packages have been upgraded in (or uninstalled from) the repo. This includes a number of security fixes, and many of these PRs were handled by Dependabot. + - fix: Exclude symbol when checking binding types: https://github.com/JackRobards/lit-analyzer/pull/107. + + Dev related (doesn't effect consumers): + + - Migrate to npm workspaces: https://github.com/JackRobards/lit-analyzer/pull/28. + - The web-component-analyzer repo has also been forked, and is no included in this monorepo: https://github.com/JackRobards/lit-analyzer/pull/59. + - Upgrade and fix the broken .github scripts to build on PRs: https://github.com/JackRobards/lit-analyzer/pull/4 and https://github.com/JackRobards/lit-analyzer/pull/5. + - Migrate repository to new ESLint flat config: https://github.com/JackRobards/lit-analyzer/pull/99. + - Upgrade ava testing package to the latest version (required some manual changes): https://github.com/JackRobards/lit-analyzer/pull/8. + - Dependabot is now active in this repo, to help keep it up to date with new releases. + - In future release notes, not all of these dev-related changes will be included in the changelog. For this initial release, they are included to help track what all has been updated with this fork. + +### Patch Changes + +- [#102](https://github.com/JackRobards/lit-analyzer/pull/102) [`64ac2a1`](https://github.com/JackRobards/lit-analyzer/commit/64ac2a1a4cb81edb46833b8e60e6624a136e7074) Thanks [@JackRobards](https://github.com/JackRobards)! - Uninstall Lerna package from repo + +- Updated dependencies [[`e85bdaf`](https://github.com/JackRobards/lit-analyzer/commit/e85bdafe871bcac2d4a89da64fc2c1d4b8b78bd9), [`f84df34`](https://github.com/JackRobards/lit-analyzer/commit/f84df34e9da2a17565a30b1984fa3a546ff1b92f), [`01850fc`](https://github.com/JackRobards/lit-analyzer/commit/01850fc4af0b6ab2a1ded0e5468fdb7138f50991), [`4514067`](https://github.com/JackRobards/lit-analyzer/commit/4514067e6e7b959c479692aa97b24692bd313a24), [`e85bdaf`](https://github.com/JackRobards/lit-analyzer/commit/e85bdafe871bcac2d4a89da64fc2c1d4b8b78bd9), [`df2021e`](https://github.com/JackRobards/lit-analyzer/commit/df2021e19af5ff815ddcba3f6a324d05a67217b8), [`64ac2a1`](https://github.com/JackRobards/lit-analyzer/commit/64ac2a1a4cb81edb46833b8e60e6624a136e7074), [`01a6282`](https://github.com/JackRobards/lit-analyzer/commit/01a6282a797681a0146c7950f3d85113c80717d0)]: + - @jackolope/lit-analyzer@3.0.0 + - @jackolope/web-component-analyzer@3.0.0 diff --git a/packages/ts-lit-plugin/package.json b/packages/ts-lit-plugin/package.json index ef8657e6..aeae3c56 100644 --- a/packages/ts-lit-plugin/package.json +++ b/packages/ts-lit-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@jackolope/ts-lit-plugin", - "version": "2.0.2", + "version": "3.0.0", "description": "Typescript plugin that adds type checking and code completion to lit-html. Fork of the original ts-lit-plugin.", "author": "JackRobards", "license": "MIT", @@ -55,8 +55,8 @@ "/html-documentation/" ], "dependencies": { - "@jackolope/lit-analyzer": "^2.0.1", - "@jackolope/web-component-analyzer": "^2.0.0" + "@jackolope/lit-analyzer": "^3.0.0", + "@jackolope/web-component-analyzer": "^3.0.0" }, "devDependencies": { "@types/node": "^22.10.7", diff --git a/packages/vscode-lit-plugin/CHANGELOG.md b/packages/vscode-lit-plugin/CHANGELOG.md index c21d2148..643d58b9 100644 --- a/packages/vscode-lit-plugin/CHANGELOG.md +++ b/packages/vscode-lit-plugin/CHANGELOG.md @@ -1,5 +1,39 @@ # Change Log +## 2.0.0 + +### Major Changes + +- [#125](https://github.com/JackRobards/lit-analyzer/pull/125) [`e85bdaf`](https://github.com/JackRobards/lit-analyzer/commit/e85bdafe871bcac2d4a89da64fc2c1d4b8b78bd9) Thanks [@JackRobards](https://github.com/JackRobards)! - Major (Breaking) changes: + + - Upgrade Supported Node versions to 18, 20, and 22: https://github.com/JackRobards/lit-analyzer/pull/27. + - Upgrade to the latest version of vsce, for building and publishing the VSCode Extension: https://github.com/JackRobards/lit-analyzer/pull/45 and https://github.com/JackRobards/lit-analyzer/pull/47. + - Upgrade TypeScript Versions tested against to 5.4, 5.5, 5.6, 5.7 (previously it was 4.8 - 5.2): https://github.com/JackRobards/lit-analyzer/pull/75. + - Upgrade tsconfig to target es2023 and the NodeNext module. Previously it was targeting es5 and commonjs: https://github.com/JackRobards/lit-analyzer/pull/95. + - NPM Packages renamed to have be prefixed with @jackolope user scope: https://github.com/JackRobards/lit-analyzer/pull/114 and https://github.com/JackRobards/lit-analyzer/pull/94. + +### Minor Changes + +- [#125](https://github.com/JackRobards/lit-analyzer/pull/125) [`e85bdaf`](https://github.com/JackRobards/lit-analyzer/commit/e85bdafe871bcac2d4a89da64fc2c1d4b8b78bd9) Thanks [@JackRobards](https://github.com/JackRobards)! - Bulk Minor/Patch Changes + + - Upgrade the html and css language service packages, so that the plugin can detect the latest features. + - Generally, all packages have been upgraded in (or uninstalled from) the repo. This includes a number of security fixes, and many of these PRs were handled by Dependabot. + - fix: Exclude symbol when checking binding types: https://github.com/JackRobards/lit-analyzer/pull/107. + + Dev related (doesn't effect consumers): + + - Migrate to npm workspaces: https://github.com/JackRobards/lit-analyzer/pull/28. + - The web-component-analyzer repo has also been forked, and is no included in this monorepo: https://github.com/JackRobards/lit-analyzer/pull/59. + - Upgrade and fix the broken .github scripts to build on PRs: https://github.com/JackRobards/lit-analyzer/pull/4 and https://github.com/JackRobards/lit-analyzer/pull/5. + - Migrate repository to new ESLint flat config: https://github.com/JackRobards/lit-analyzer/pull/99. + - Upgrade ava testing package to the latest version (required some manual changes): https://github.com/JackRobards/lit-analyzer/pull/8. + - Dependabot is now active in this repo, to help keep it up to date with new releases. + - In future release notes, not all of these dev-related changes will be included in the changelog. For this initial release, they are included to help track what all has been updated with this fork. + +### Patch Changes + +- [#102](https://github.com/JackRobards/lit-analyzer/pull/102) [`64ac2a1`](https://github.com/JackRobards/lit-analyzer/commit/64ac2a1a4cb81edb46833b8e60e6624a136e7074) Thanks [@JackRobards](https://github.com/JackRobards)! - Uninstall Lerna package from repo + All notable changes to this project will be documented in this file. diff --git a/packages/vscode-lit-plugin/package.json b/packages/vscode-lit-plugin/package.json index 17d03391..491e344e 100644 --- a/packages/vscode-lit-plugin/package.json +++ b/packages/vscode-lit-plugin/package.json @@ -3,7 +3,7 @@ "private": true, "displayName": "lit-plugin", "description": "Syntax highlighting, type checking and code completion for lit-html", - "version": "1.4.3", + "version": "2.0.0", "publisher": "jackolope", "icon": "docs/assets/lit-plugin@256w.png", "license": "MIT", @@ -174,7 +174,7 @@ "@vscode/vsce": "^3.2.1", "esbuild": "^0.24.2", "fast-glob": "^3.2.11", - "@jackolope/lit-analyzer": "^2.0.3", + "@jackolope/lit-analyzer": "^3.0.0", "mocha": "^11.1.0", "wireit": "^0.1.1" }, diff --git a/packages/web-component-analyzer/CHANGELOG.md b/packages/web-component-analyzer/CHANGELOG.md index 352a0a58..776a832d 100644 --- a/packages/web-component-analyzer/CHANGELOG.md +++ b/packages/web-component-analyzer/CHANGELOG.md @@ -1,5 +1,41 @@ # Change Log +## 3.0.0 + +### Major Changes + +- [#125](https://github.com/JackRobards/lit-analyzer/pull/125) [`e85bdaf`](https://github.com/JackRobards/lit-analyzer/commit/e85bdafe871bcac2d4a89da64fc2c1d4b8b78bd9) Thanks [@JackRobards](https://github.com/JackRobards)! - Major (Breaking) changes: + + - Upgrade Supported Node versions to 18, 20, and 22: https://github.com/JackRobards/lit-analyzer/pull/27. + - Upgrade to the latest version of vsce, for building and publishing the VSCode Extension: https://github.com/JackRobards/lit-analyzer/pull/45 and https://github.com/JackRobards/lit-analyzer/pull/47. + - Upgrade TypeScript Versions tested against to 5.4, 5.5, 5.6, 5.7 (previously it was 4.8 - 5.2): https://github.com/JackRobards/lit-analyzer/pull/75. + - Upgrade tsconfig to target es2023 and the NodeNext module. Previously it was targeting es5 and commonjs: https://github.com/JackRobards/lit-analyzer/pull/95. + - NPM Packages renamed to have be prefixed with @jackolope user scope: https://github.com/JackRobards/lit-analyzer/pull/114 and https://github.com/JackRobards/lit-analyzer/pull/94. + +### Minor Changes + +- [#125](https://github.com/JackRobards/lit-analyzer/pull/125) [`e85bdaf`](https://github.com/JackRobards/lit-analyzer/commit/e85bdafe871bcac2d4a89da64fc2c1d4b8b78bd9) Thanks [@JackRobards](https://github.com/JackRobards)! - Bulk Minor/Patch Changes + + - Upgrade the html and css language service packages, so that the plugin can detect the latest features. + - Generally, all packages have been upgraded in (or uninstalled from) the repo. This includes a number of security fixes, and many of these PRs were handled by Dependabot. + - fix: Exclude symbol when checking binding types: https://github.com/JackRobards/lit-analyzer/pull/107. + + Dev related (doesn't effect consumers): + + - Migrate to npm workspaces: https://github.com/JackRobards/lit-analyzer/pull/28. + - The web-component-analyzer repo has also been forked, and is no included in this monorepo: https://github.com/JackRobards/lit-analyzer/pull/59. + - Upgrade and fix the broken .github scripts to build on PRs: https://github.com/JackRobards/lit-analyzer/pull/4 and https://github.com/JackRobards/lit-analyzer/pull/5. + - Migrate repository to new ESLint flat config: https://github.com/JackRobards/lit-analyzer/pull/99. + - Upgrade ava testing package to the latest version (required some manual changes): https://github.com/JackRobards/lit-analyzer/pull/8. + - Dependabot is now active in this repo, to help keep it up to date with new releases. + - In future release notes, not all of these dev-related changes will be included in the changelog. For this initial release, they are included to help track what all has been updated with this fork. + +- [#108](https://github.com/JackRobards/lit-analyzer/pull/108) [`f84df34`](https://github.com/JackRobards/lit-analyzer/commit/f84df34e9da2a17565a30b1984fa3a546ff1b92f) Thanks [@JackRobards](https://github.com/JackRobards)! - Support tag names which are static class properties or variables with no-missing-element-type-definition rule" + +### Patch Changes + +- [#102](https://github.com/JackRobards/lit-analyzer/pull/102) [`64ac2a1`](https://github.com/JackRobards/lit-analyzer/commit/64ac2a1a4cb81edb46833b8e60e6624a136e7074) Thanks [@JackRobards](https://github.com/JackRobards)! - Uninstall Lerna package from repo + All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/) diff --git a/packages/web-component-analyzer/package.json b/packages/web-component-analyzer/package.json index 2e18e001..d22340d5 100644 --- a/packages/web-component-analyzer/package.json +++ b/packages/web-component-analyzer/package.json @@ -1,6 +1,6 @@ { "name": "@jackolope/web-component-analyzer", - "version": "2.0.0", + "version": "3.0.0", "description": "CLI that analyzes web components", "main": "lib/cjs/api.js", "module": "lib/esm/api.js",