Skip to content

Commit

Permalink
feat: Add meta info to plugin (#12)
Browse files Browse the repository at this point in the history
chore: Add meta info to plugin
  • Loading branch information
nzakas authored Jul 22, 2024
1 parent 64c5af9 commit f419757
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions release-please-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@
"packages": {
".": {
"release-type": "node",
"release-as": "0.1.0",
"pull-request-title-pattern": "chore: release ${version} 🚀",
"extra-files": [
{
"type": "json",
"path": "jsr.json",
"jsonpath": "$.version"
}
},
"src/index.js"
]
}
}
Expand Down
4 changes: 4 additions & 0 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ import noEmptyKeys from "./rules/no-empty-keys.js";
//-----------------------------------------------------------------------------

const plugin = {
meta: {
name: "@eslint/json",
version: "0.1.0", // x-release-please-version
},
languages: {
json: new JSONLanguage({ mode: "json" }),
jsonc: new JSONLanguage({ mode: "jsonc" }),
Expand Down

0 comments on commit f419757

Please sign in to comment.