Skip to content

Commit b11e32e

Browse files
committed
v0.35.1
1 parent ff8fed5 commit b11e32e

File tree

10 files changed

+38
-38
lines changed

10 files changed

+38
-38
lines changed

lerna.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"packages": [
33
"packages/*"
44
],
5-
"version": "0.35.0",
5+
"version": "0.35.1",
66
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
77
"npmClient": "yarn"
88
}

packages/cli/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@html-eslint/cli",
3-
"version": "0.35.0",
3+
"version": "0.35.1",
44
"description": "HTML-ESLint CLI",
55
"author": "yeonjuan <yeonjuan93@naver.com>",
66
"homepage": "https://github.com/yeonjuan/html-eslint#readme",
@@ -23,8 +23,8 @@
2323
"url": "https://github.com/yeonjuan/html-eslint/issues"
2424
},
2525
"dependencies": {
26-
"@html-eslint/eslint-plugin": "^0.35.0",
27-
"@html-eslint/parser": "^0.35.0",
26+
"@html-eslint/eslint-plugin": "^0.35.1",
27+
"@html-eslint/parser": "^0.35.1",
2828
"axios": "^1.6.2",
2929
"chalk": "^4.1.1",
3030
"eslint": "^9.19.0",

packages/eslint-plugin/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@html-eslint/eslint-plugin",
3-
"version": "0.35.0",
3+
"version": "0.35.1",
44
"description": "ESLint plugin for html",
55
"author": "yeonjuan",
66
"homepage": "https://github.com/yeonjuan/html-eslint#readme",
@@ -35,12 +35,12 @@
3535
"accessibility"
3636
],
3737
"dependencies": {
38-
"@html-eslint/template-parser": "^0.35.0",
39-
"@html-eslint/template-syntax-parser": "^0.35.0"
38+
"@html-eslint/template-parser": "^0.35.1",
39+
"@html-eslint/template-syntax-parser": "^0.35.1"
4040
},
4141
"devDependencies": {
42-
"@html-eslint/parser": "^0.35.0",
43-
"@html-eslint/types": "^0.35.0",
42+
"@html-eslint/parser": "^0.35.1",
43+
"@html-eslint/types": "^0.35.1",
4444
"@types/eslint": "^9.6.1",
4545
"@types/estree": "^0.0.47",
4646
"es-html-parser": "0.1.1",

packages/integration-test/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "integration-test",
3-
"version": "0.35.0",
3+
"version": "0.35.1",
44
"private": true,
55
"scripts": {
66
"test:integration": "jest --coverage --verbose"

packages/parser/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@html-eslint/parser",
3-
"version": "0.35.0",
3+
"version": "0.35.1",
44
"description": "Parser for @html-eslint/eslint-plugin",
55
"author": "yeonjuan",
66
"homepage": "https://github.com/yeonjuan/html-eslint#readme",
@@ -25,11 +25,11 @@
2525
"url": "https://github.com/yeonjuan/html-eslint/issues"
2626
},
2727
"dependencies": {
28-
"@html-eslint/template-syntax-parser": "^0.35.0",
28+
"@html-eslint/template-syntax-parser": "^0.35.1",
2929
"es-html-parser": "0.1.1"
3030
},
3131
"devDependencies": {
32-
"@html-eslint/types": "^0.35.0",
32+
"@html-eslint/types": "^0.35.1",
3333
"typescript": "^5.7.2"
3434
}
3535
}

packages/template-parser/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@html-eslint/template-parser",
3-
"version": "0.35.0",
3+
"version": "0.35.1",
44
"description": "HTML parser for template literals ",
55
"author": "yeonjuan",
66
"homepage": "https://github.com/yeonjuan/html-eslint#readme",
@@ -29,7 +29,7 @@
2929
"es-html-parser": "0.1.1"
3030
},
3131
"devDependencies": {
32-
"@html-eslint/types": "^0.35.0",
32+
"@html-eslint/types": "^0.35.1",
3333
"@types/espree": "^10.1.0",
3434
"@types/estree": "^0.0.47",
3535
"eslint": "^9.19.0",

packages/template-syntax-parser/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@html-eslint/template-syntax-parser",
3-
"version": "0.35.0",
3+
"version": "0.35.1",
44
"description": "Parse template syntax",
55
"author": "yeonjuan",
66
"homepage": "https://github.com/yeonjuan/html-eslint#readme",
@@ -32,7 +32,7 @@
3232
"url": "https://github.com/yeonjuan/html-eslint/issues"
3333
},
3434
"devDependencies": {
35-
"@html-eslint/types": "^0.35.0",
35+
"@html-eslint/types": "^0.35.1",
3636
"eslint": "^9.19.0",
3737
"espree": "^10.3.0",
3838
"globals": "^15.12.0"

packages/types/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@html-eslint/types",
3-
"version": "0.35.0",
3+
"version": "0.35.1",
44
"description": "Types for @html-eslint/eslint-plugin",
55
"author": "yeonjuan",
66
"homepage": "https://github.com/yeonjuan/html-eslint#readme",

packages/website/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "website",
3-
"version": "0.35.0",
3+
"version": "0.35.1",
44
"private": true,
55
"scripts": {
66
"clear:cache": "rimraf ../../parcel-cache",
@@ -12,8 +12,8 @@
1212
"sitemap": "node ./scripts/sitemap"
1313
},
1414
"dependencies": {
15-
"@html-eslint/eslint-plugin": "^0.35.0",
16-
"@html-eslint/parser": "^0.35.0",
15+
"@html-eslint/eslint-plugin": "^0.35.1",
16+
"@html-eslint/parser": "^0.35.1",
1717
"@html-eslint/web-linter": "^0.35.0",
1818
"@html-kit/html": "^0.0.4",
1919
"codemirror": "^5.58.3"

yarn.lock

+17-17
Original file line numberDiff line numberDiff line change
@@ -1260,8 +1260,8 @@ __metadata:
12601260
version: 0.0.0-use.local
12611261
resolution: "@html-eslint/cli@workspace:packages/cli"
12621262
dependencies:
1263-
"@html-eslint/eslint-plugin": "npm:^0.35.0"
1264-
"@html-eslint/parser": "npm:^0.35.0"
1263+
"@html-eslint/eslint-plugin": "npm:^0.35.1"
1264+
"@html-eslint/parser": "npm:^0.35.1"
12651265
axios: "npm:^1.6.2"
12661266
chalk: "npm:^4.1.1"
12671267
eslint: "npm:^9.19.0"
@@ -1271,14 +1271,14 @@ __metadata:
12711271
languageName: unknown
12721272
linkType: soft
12731273

1274-
"@html-eslint/eslint-plugin@npm:^0.35.0, @html-eslint/eslint-plugin@workspace:packages/eslint-plugin":
1274+
"@html-eslint/eslint-plugin@npm:^0.35.1, @html-eslint/eslint-plugin@workspace:packages/eslint-plugin":
12751275
version: 0.0.0-use.local
12761276
resolution: "@html-eslint/eslint-plugin@workspace:packages/eslint-plugin"
12771277
dependencies:
1278-
"@html-eslint/parser": "npm:^0.35.0"
1279-
"@html-eslint/template-parser": "npm:^0.35.0"
1280-
"@html-eslint/template-syntax-parser": "npm:^0.35.0"
1281-
"@html-eslint/types": "npm:^0.35.0"
1278+
"@html-eslint/parser": "npm:^0.35.1"
1279+
"@html-eslint/template-parser": "npm:^0.35.1"
1280+
"@html-eslint/template-syntax-parser": "npm:^0.35.1"
1281+
"@html-eslint/types": "npm:^0.35.1"
12821282
"@types/eslint": "npm:^9.6.1"
12831283
"@types/estree": "npm:^0.0.47"
12841284
es-html-parser: "npm:0.1.1"
@@ -1307,22 +1307,22 @@ __metadata:
13071307
languageName: unknown
13081308
linkType: soft
13091309

1310-
"@html-eslint/parser@npm:^0.35.0, @html-eslint/parser@workspace:packages/parser":
1310+
"@html-eslint/parser@npm:^0.35.1, @html-eslint/parser@workspace:packages/parser":
13111311
version: 0.0.0-use.local
13121312
resolution: "@html-eslint/parser@workspace:packages/parser"
13131313
dependencies:
1314-
"@html-eslint/template-syntax-parser": "npm:^0.35.0"
1315-
"@html-eslint/types": "npm:^0.35.0"
1314+
"@html-eslint/template-syntax-parser": "npm:^0.35.1"
1315+
"@html-eslint/types": "npm:^0.35.1"
13161316
es-html-parser: "npm:0.1.1"
13171317
typescript: "npm:^5.7.2"
13181318
languageName: unknown
13191319
linkType: soft
13201320

1321-
"@html-eslint/template-parser@npm:^0.35.0, @html-eslint/template-parser@workspace:packages/template-parser":
1321+
"@html-eslint/template-parser@npm:^0.35.1, @html-eslint/template-parser@workspace:packages/template-parser":
13221322
version: 0.0.0-use.local
13231323
resolution: "@html-eslint/template-parser@workspace:packages/template-parser"
13241324
dependencies:
1325-
"@html-eslint/types": "npm:^0.35.0"
1325+
"@html-eslint/types": "npm:^0.35.1"
13261326
"@types/espree": "npm:^10.1.0"
13271327
"@types/estree": "npm:^0.0.47"
13281328
es-html-parser: "npm:0.1.1"
@@ -1332,18 +1332,18 @@ __metadata:
13321332
languageName: unknown
13331333
linkType: soft
13341334

1335-
"@html-eslint/template-syntax-parser@npm:^0.35.0, @html-eslint/template-syntax-parser@workspace:packages/template-syntax-parser":
1335+
"@html-eslint/template-syntax-parser@npm:^0.35.1, @html-eslint/template-syntax-parser@workspace:packages/template-syntax-parser":
13361336
version: 0.0.0-use.local
13371337
resolution: "@html-eslint/template-syntax-parser@workspace:packages/template-syntax-parser"
13381338
dependencies:
1339-
"@html-eslint/types": "npm:^0.35.0"
1339+
"@html-eslint/types": "npm:^0.35.1"
13401340
eslint: "npm:^9.19.0"
13411341
espree: "npm:^10.3.0"
13421342
globals: "npm:^15.12.0"
13431343
languageName: unknown
13441344
linkType: soft
13451345

1346-
"@html-eslint/types@npm:^0.35.0, @html-eslint/types@workspace:packages/types":
1346+
"@html-eslint/types@npm:^0.35.1, @html-eslint/types@workspace:packages/types":
13471347
version: 0.0.0-use.local
13481348
resolution: "@html-eslint/types@workspace:packages/types"
13491349
dependencies:
@@ -15614,8 +15614,8 @@ __metadata:
1561415614
version: 0.0.0-use.local
1561515615
resolution: "website@workspace:packages/website"
1561615616
dependencies:
15617-
"@html-eslint/eslint-plugin": "npm:^0.35.0"
15618-
"@html-eslint/parser": "npm:^0.35.0"
15617+
"@html-eslint/eslint-plugin": "npm:^0.35.1"
15618+
"@html-eslint/parser": "npm:^0.35.1"
1561915619
"@html-eslint/web-linter": "npm:^0.35.0"
1562015620
"@html-kit/html": "npm:^0.0.4"
1562115621
"@parcel/transformer-sass": "npm:2.13.0"

0 commit comments

Comments
 (0)