Skip to content

Commit

Permalink
v0.35.1
Browse files Browse the repository at this point in the history
  • Loading branch information
yeonjuan committed Mar 5, 2025
1 parent ff8fed5 commit b11e32e
Show file tree
Hide file tree
Showing 10 changed files with 38 additions and 38 deletions.
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"packages": [
"packages/*"
],
"version": "0.35.0",
"version": "0.35.1",
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
"npmClient": "yarn"
}
6 changes: 3 additions & 3 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@html-eslint/cli",
"version": "0.35.0",
"version": "0.35.1",
"description": "HTML-ESLint CLI",
"author": "yeonjuan <yeonjuan93@naver.com>",
"homepage": "https://github.com/yeonjuan/html-eslint#readme",
Expand All @@ -23,8 +23,8 @@
"url": "https://github.com/yeonjuan/html-eslint/issues"
},
"dependencies": {
"@html-eslint/eslint-plugin": "^0.35.0",
"@html-eslint/parser": "^0.35.0",
"@html-eslint/eslint-plugin": "^0.35.1",
"@html-eslint/parser": "^0.35.1",
"axios": "^1.6.2",
"chalk": "^4.1.1",
"eslint": "^9.19.0",
Expand Down
10 changes: 5 additions & 5 deletions packages/eslint-plugin/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@html-eslint/eslint-plugin",
"version": "0.35.0",
"version": "0.35.1",
"description": "ESLint plugin for html",
"author": "yeonjuan",
"homepage": "https://github.com/yeonjuan/html-eslint#readme",
Expand Down Expand Up @@ -35,12 +35,12 @@
"accessibility"
],
"dependencies": {
"@html-eslint/template-parser": "^0.35.0",
"@html-eslint/template-syntax-parser": "^0.35.0"
"@html-eslint/template-parser": "^0.35.1",
"@html-eslint/template-syntax-parser": "^0.35.1"
},
"devDependencies": {
"@html-eslint/parser": "^0.35.0",
"@html-eslint/types": "^0.35.0",
"@html-eslint/parser": "^0.35.1",
"@html-eslint/types": "^0.35.1",
"@types/eslint": "^9.6.1",
"@types/estree": "^0.0.47",
"es-html-parser": "0.1.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/integration-test/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "integration-test",
"version": "0.35.0",
"version": "0.35.1",
"private": true,
"scripts": {
"test:integration": "jest --coverage --verbose"
Expand Down
6 changes: 3 additions & 3 deletions packages/parser/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@html-eslint/parser",
"version": "0.35.0",
"version": "0.35.1",
"description": "Parser for @html-eslint/eslint-plugin",
"author": "yeonjuan",
"homepage": "https://github.com/yeonjuan/html-eslint#readme",
Expand All @@ -25,11 +25,11 @@
"url": "https://github.com/yeonjuan/html-eslint/issues"
},
"dependencies": {
"@html-eslint/template-syntax-parser": "^0.35.0",
"@html-eslint/template-syntax-parser": "^0.35.1",
"es-html-parser": "0.1.1"
},
"devDependencies": {
"@html-eslint/types": "^0.35.0",
"@html-eslint/types": "^0.35.1",
"typescript": "^5.7.2"
}
}
4 changes: 2 additions & 2 deletions packages/template-parser/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@html-eslint/template-parser",
"version": "0.35.0",
"version": "0.35.1",
"description": "HTML parser for template literals ",
"author": "yeonjuan",
"homepage": "https://github.com/yeonjuan/html-eslint#readme",
Expand Down Expand Up @@ -29,7 +29,7 @@
"es-html-parser": "0.1.1"
},
"devDependencies": {
"@html-eslint/types": "^0.35.0",
"@html-eslint/types": "^0.35.1",
"@types/espree": "^10.1.0",
"@types/estree": "^0.0.47",
"eslint": "^9.19.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/template-syntax-parser/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@html-eslint/template-syntax-parser",
"version": "0.35.0",
"version": "0.35.1",
"description": "Parse template syntax",
"author": "yeonjuan",
"homepage": "https://github.com/yeonjuan/html-eslint#readme",
Expand Down Expand Up @@ -32,7 +32,7 @@
"url": "https://github.com/yeonjuan/html-eslint/issues"
},
"devDependencies": {
"@html-eslint/types": "^0.35.0",
"@html-eslint/types": "^0.35.1",
"eslint": "^9.19.0",
"espree": "^10.3.0",
"globals": "^15.12.0"
Expand Down
2 changes: 1 addition & 1 deletion packages/types/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@html-eslint/types",
"version": "0.35.0",
"version": "0.35.1",
"description": "Types for @html-eslint/eslint-plugin",
"author": "yeonjuan",
"homepage": "https://github.com/yeonjuan/html-eslint#readme",
Expand Down
6 changes: 3 additions & 3 deletions packages/website/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "website",
"version": "0.35.0",
"version": "0.35.1",
"private": true,
"scripts": {
"clear:cache": "rimraf ../../parcel-cache",
Expand All @@ -12,8 +12,8 @@
"sitemap": "node ./scripts/sitemap"
},
"dependencies": {
"@html-eslint/eslint-plugin": "^0.35.0",
"@html-eslint/parser": "^0.35.0",
"@html-eslint/eslint-plugin": "^0.35.1",
"@html-eslint/parser": "^0.35.1",
"@html-eslint/web-linter": "^0.35.0",
"@html-kit/html": "^0.0.4",
"codemirror": "^5.58.3"
Expand Down
34 changes: 17 additions & 17 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1260,8 +1260,8 @@ __metadata:
version: 0.0.0-use.local
resolution: "@html-eslint/cli@workspace:packages/cli"
dependencies:
"@html-eslint/eslint-plugin": "npm:^0.35.0"
"@html-eslint/parser": "npm:^0.35.0"
"@html-eslint/eslint-plugin": "npm:^0.35.1"
"@html-eslint/parser": "npm:^0.35.1"
axios: "npm:^1.6.2"
chalk: "npm:^4.1.1"
eslint: "npm:^9.19.0"
Expand All @@ -1271,14 +1271,14 @@ __metadata:
languageName: unknown
linkType: soft

"@html-eslint/eslint-plugin@npm:^0.35.0, @html-eslint/eslint-plugin@workspace:packages/eslint-plugin":
"@html-eslint/eslint-plugin@npm:^0.35.1, @html-eslint/eslint-plugin@workspace:packages/eslint-plugin":
version: 0.0.0-use.local
resolution: "@html-eslint/eslint-plugin@workspace:packages/eslint-plugin"
dependencies:
"@html-eslint/parser": "npm:^0.35.0"
"@html-eslint/template-parser": "npm:^0.35.0"
"@html-eslint/template-syntax-parser": "npm:^0.35.0"
"@html-eslint/types": "npm:^0.35.0"
"@html-eslint/parser": "npm:^0.35.1"
"@html-eslint/template-parser": "npm:^0.35.1"
"@html-eslint/template-syntax-parser": "npm:^0.35.1"
"@html-eslint/types": "npm:^0.35.1"
"@types/eslint": "npm:^9.6.1"
"@types/estree": "npm:^0.0.47"
es-html-parser: "npm:0.1.1"
Expand Down Expand Up @@ -1307,22 +1307,22 @@ __metadata:
languageName: unknown
linkType: soft

"@html-eslint/parser@npm:^0.35.0, @html-eslint/parser@workspace:packages/parser":
"@html-eslint/parser@npm:^0.35.1, @html-eslint/parser@workspace:packages/parser":
version: 0.0.0-use.local
resolution: "@html-eslint/parser@workspace:packages/parser"
dependencies:
"@html-eslint/template-syntax-parser": "npm:^0.35.0"
"@html-eslint/types": "npm:^0.35.0"
"@html-eslint/template-syntax-parser": "npm:^0.35.1"
"@html-eslint/types": "npm:^0.35.1"
es-html-parser: "npm:0.1.1"
typescript: "npm:^5.7.2"
languageName: unknown
linkType: soft

"@html-eslint/template-parser@npm:^0.35.0, @html-eslint/template-parser@workspace:packages/template-parser":
"@html-eslint/template-parser@npm:^0.35.1, @html-eslint/template-parser@workspace:packages/template-parser":
version: 0.0.0-use.local
resolution: "@html-eslint/template-parser@workspace:packages/template-parser"
dependencies:
"@html-eslint/types": "npm:^0.35.0"
"@html-eslint/types": "npm:^0.35.1"
"@types/espree": "npm:^10.1.0"
"@types/estree": "npm:^0.0.47"
es-html-parser: "npm:0.1.1"
Expand All @@ -1332,18 +1332,18 @@ __metadata:
languageName: unknown
linkType: soft

"@html-eslint/template-syntax-parser@npm:^0.35.0, @html-eslint/template-syntax-parser@workspace:packages/template-syntax-parser":
"@html-eslint/template-syntax-parser@npm:^0.35.1, @html-eslint/template-syntax-parser@workspace:packages/template-syntax-parser":
version: 0.0.0-use.local
resolution: "@html-eslint/template-syntax-parser@workspace:packages/template-syntax-parser"
dependencies:
"@html-eslint/types": "npm:^0.35.0"
"@html-eslint/types": "npm:^0.35.1"
eslint: "npm:^9.19.0"
espree: "npm:^10.3.0"
globals: "npm:^15.12.0"
languageName: unknown
linkType: soft

"@html-eslint/types@npm:^0.35.0, @html-eslint/types@workspace:packages/types":
"@html-eslint/types@npm:^0.35.1, @html-eslint/types@workspace:packages/types":
version: 0.0.0-use.local
resolution: "@html-eslint/types@workspace:packages/types"
dependencies:
Expand Down Expand Up @@ -15614,8 +15614,8 @@ __metadata:
version: 0.0.0-use.local
resolution: "website@workspace:packages/website"
dependencies:
"@html-eslint/eslint-plugin": "npm:^0.35.0"
"@html-eslint/parser": "npm:^0.35.0"
"@html-eslint/eslint-plugin": "npm:^0.35.1"
"@html-eslint/parser": "npm:^0.35.1"
"@html-eslint/web-linter": "npm:^0.35.0"
"@html-kit/html": "npm:^0.0.4"
"@parcel/transformer-sass": "npm:2.13.0"
Expand Down

0 comments on commit b11e32e

Please sign in to comment.