Skip to content

Commit 2493a6a

Browse files
committed
v0.35.0
1 parent dc0b68e commit 2493a6a

File tree

10 files changed

+32
-32
lines changed

10 files changed

+32
-32
lines changed

lerna.json

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

packages/cli/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@html-eslint/cli",
3-
"version": "0.34.0",
3+
"version": "0.35.0",
44
"description": "HTML-ESLint CLI",
55
"author": "yeonjuan <[email protected]>",
66
"homepage": "https://github.com/yeonjuan/html-eslint#readme",
@@ -27,8 +27,8 @@
2727
"url": "https://github.com/yeonjuan/html-eslint/issues"
2828
},
2929
"dependencies": {
30-
"@html-eslint/eslint-plugin": "^0.34.0",
31-
"@html-eslint/parser": "^0.34.0",
30+
"@html-eslint/eslint-plugin": "^0.35.0",
31+
"@html-eslint/parser": "^0.35.0",
3232
"axios": "^1.6.2",
3333
"chalk": "^4.1.1",
3434
"eslint": "^9.19.0",

packages/eslint-plugin/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@html-eslint/eslint-plugin",
3-
"version": "0.34.0",
3+
"version": "0.35.0",
44
"description": "ESLint plugin for html",
55
"author": "yeonjuan",
66
"homepage": "https://github.com/yeonjuan/html-eslint#readme",
@@ -45,11 +45,11 @@
4545
"accessibility"
4646
],
4747
"dependencies": {
48-
"@html-eslint/template-parser": "^0.34.0",
49-
"@html-eslint/template-syntax-parser": "^0.34.0"
48+
"@html-eslint/template-parser": "^0.35.0",
49+
"@html-eslint/template-syntax-parser": "^0.35.0"
5050
},
5151
"devDependencies": {
52-
"@html-eslint/parser": "^0.34.0",
52+
"@html-eslint/parser": "^0.35.0",
5353
"@types/eslint": "^9.6.1",
5454
"@types/estree": "^0.0.47",
5555
"es-html-parser": "0.1.0",

packages/integration-test/package.json

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

packages/parser/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@html-eslint/parser",
3-
"version": "0.34.0",
3+
"version": "0.35.0",
44
"description": "Parser for @html-eslint/eslint-plugin",
55
"author": "yeonjuan",
66
"homepage": "https://github.com/yeonjuan/html-eslint#readme",
@@ -35,7 +35,7 @@
3535
"url": "https://github.com/yeonjuan/html-eslint/issues"
3636
},
3737
"dependencies": {
38-
"@html-eslint/template-syntax-parser": "^0.34.0",
38+
"@html-eslint/template-syntax-parser": "^0.35.0",
3939
"es-html-parser": "0.1.0"
4040
},
4141
"devDependencies": {

packages/template-parser/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@html-eslint/template-parser",
3-
"version": "0.34.0",
3+
"version": "0.35.0",
44
"description": "HTML parser for template literals ",
55
"author": "yeonjuan",
66
"homepage": "https://github.com/yeonjuan/html-eslint#readme",

packages/template-syntax-parser/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@html-eslint/template-syntax-parser",
3-
"version": "0.34.0",
3+
"version": "0.35.0",
44
"description": "Parse template syntax",
55
"author": "yeonjuan",
66
"homepage": "https://github.com/yeonjuan/html-eslint#readme",

packages/web-linter/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@html-eslint/web-linter",
3-
"version": "0.34.0",
3+
"version": "0.35.0",
44
"description": "",
55
"private": true,
66
"main": "out/output.js",

packages/website/package.json

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

yarn.lock

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1199,8 +1199,8 @@ __metadata:
11991199
version: 0.0.0-use.local
12001200
resolution: "@html-eslint/cli@workspace:packages/cli"
12011201
dependencies:
1202-
"@html-eslint/eslint-plugin": "npm:^0.34.0"
1203-
"@html-eslint/parser": "npm:^0.34.0"
1202+
"@html-eslint/eslint-plugin": "npm:^0.35.0"
1203+
"@html-eslint/parser": "npm:^0.35.0"
12041204
axios: "npm:^1.6.2"
12051205
chalk: "npm:^4.1.1"
12061206
eslint: "npm:^9.19.0"
@@ -1210,13 +1210,13 @@ __metadata:
12101210
languageName: unknown
12111211
linkType: soft
12121212

1213-
"@html-eslint/eslint-plugin@npm:^0.34.0, @html-eslint/eslint-plugin@workspace:packages/eslint-plugin":
1213+
"@html-eslint/eslint-plugin@npm:^0.35.0, @html-eslint/eslint-plugin@workspace:packages/eslint-plugin":
12141214
version: 0.0.0-use.local
12151215
resolution: "@html-eslint/eslint-plugin@workspace:packages/eslint-plugin"
12161216
dependencies:
1217-
"@html-eslint/parser": "npm:^0.34.0"
1218-
"@html-eslint/template-parser": "npm:^0.34.0"
1219-
"@html-eslint/template-syntax-parser": "npm:^0.34.0"
1217+
"@html-eslint/parser": "npm:^0.35.0"
1218+
"@html-eslint/template-parser": "npm:^0.35.0"
1219+
"@html-eslint/template-syntax-parser": "npm:^0.35.0"
12201220
"@types/eslint": "npm:^9.6.1"
12211221
"@types/estree": "npm:^0.0.47"
12221222
es-html-parser: "npm:0.1.0"
@@ -1244,17 +1244,17 @@ __metadata:
12441244
languageName: unknown
12451245
linkType: soft
12461246

1247-
"@html-eslint/parser@npm:^0.34.0, @html-eslint/parser@workspace:packages/parser":
1247+
"@html-eslint/parser@npm:^0.35.0, @html-eslint/parser@workspace:packages/parser":
12481248
version: 0.0.0-use.local
12491249
resolution: "@html-eslint/parser@workspace:packages/parser"
12501250
dependencies:
1251-
"@html-eslint/template-syntax-parser": "npm:^0.34.0"
1251+
"@html-eslint/template-syntax-parser": "npm:^0.35.0"
12521252
es-html-parser: "npm:0.1.0"
12531253
typescript: "npm:^5.7.2"
12541254
languageName: unknown
12551255
linkType: soft
12561256

1257-
"@html-eslint/template-parser@npm:^0.34.0, @html-eslint/template-parser@workspace:packages/template-parser":
1257+
"@html-eslint/template-parser@npm:^0.35.0, @html-eslint/template-parser@workspace:packages/template-parser":
12581258
version: 0.0.0-use.local
12591259
resolution: "@html-eslint/template-parser@workspace:packages/template-parser"
12601260
dependencies:
@@ -1266,7 +1266,7 @@ __metadata:
12661266
languageName: unknown
12671267
linkType: soft
12681268

1269-
"@html-eslint/template-syntax-parser@npm:^0.34.0, @html-eslint/template-syntax-parser@workspace:packages/template-syntax-parser":
1269+
"@html-eslint/template-syntax-parser@npm:^0.35.0, @html-eslint/template-syntax-parser@workspace:packages/template-syntax-parser":
12701270
version: 0.0.0-use.local
12711271
resolution: "@html-eslint/template-syntax-parser@workspace:packages/template-syntax-parser"
12721272
dependencies:
@@ -1276,7 +1276,7 @@ __metadata:
12761276
languageName: unknown
12771277
linkType: soft
12781278

1279-
"@html-eslint/web-linter@npm:^0.34.0, @html-eslint/web-linter@workspace:packages/web-linter":
1279+
"@html-eslint/web-linter@npm:^0.35.0, @html-eslint/web-linter@workspace:packages/web-linter":
12801280
version: 0.0.0-use.local
12811281
resolution: "@html-eslint/web-linter@workspace:packages/web-linter"
12821282
dependencies:
@@ -15460,9 +15460,9 @@ __metadata:
1546015460
version: 0.0.0-use.local
1546115461
resolution: "website@workspace:packages/website"
1546215462
dependencies:
15463-
"@html-eslint/eslint-plugin": "npm:^0.34.0"
15464-
"@html-eslint/parser": "npm:^0.34.0"
15465-
"@html-eslint/web-linter": "npm:^0.34.0"
15463+
"@html-eslint/eslint-plugin": "npm:^0.35.0"
15464+
"@html-eslint/parser": "npm:^0.35.0"
15465+
"@html-eslint/web-linter": "npm:^0.35.0"
1546615466
"@html-kit/html": "npm:^0.0.4"
1546715467
"@parcel/transformer-sass": "npm:2.13.0"
1546815468
"@stylistic/eslint-plugin": "npm:^3.0.0"

0 commit comments

Comments
 (0)