Skip to content

Commit 0bd20df

Browse files
chore: release eslint-plugin-astro (#332)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent fe6ffc6 commit 0bd20df

File tree

5 files changed

+13
-8
lines changed

5 files changed

+13
-8
lines changed

.changeset/slimy-pillows-change.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# eslint-plugin-astro
22

3+
## 0.33.0
4+
5+
### Minor Changes
6+
7+
- [#322](https://github.com/ota-meshi/eslint-plugin-astro/pull/322) [`d55a51e`](https://github.com/ota-meshi/eslint-plugin-astro/commit/d55a51eb6903f30a90d81f0a9731520e45a7de83) Thanks [@oanaOM](https://github.com/oanaOM)! - feat add `astro/missing-client-only-directive-value` rule
8+
39
## 0.32.0
410

511
### Minor Changes

docs/rules/missing-client-only-directive-value.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
22
title: "astro/missing-client-only-directive-value"
33
description: "the client:only directive is missing the correct component's framework value"
4+
since: "v0.33.0"
45
---
56

67
# astro/missing-client-only-directive-value
78

89
> the client:only directive is missing the correct component's framework value
910
10-
- ❗ <badge text="This rule has not been released yet." vertical="middle" type="error"> **_This rule has not been released yet._** </badge>
1111
- ⚙ This rule is included in `"plugin:astro/recommended"`.
1212

1313
## 📖 Rule Details
@@ -42,6 +42,10 @@ Nothing.
4242

4343
- [Astro Documentation | Template Directives Reference > client:only](https://docs.astro.build/en/reference/directives-reference/#clientonly)
4444

45+
## 🚀 Version
46+
47+
This rule was introduced in eslint-plugin-astro v0.33.0
48+
4549
## 🔍 Implementation
4650

4751
- [Rule source](https://github.com/ota-meshi/eslint-plugin-astro/blob/main/src/rules/missing-client-only-directive-value.ts)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-plugin-astro",
3-
"version": "0.32.0",
3+
"version": "0.33.0",
44
"description": "ESLint plugin for Astro component",
55
"main": "lib/index.js",
66
"files": [

src/meta.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
// This file has been automatically generated,
33
// in order to update its content execute "npm run update"
44
export const name = "eslint-plugin-astro" as const
5-
export const version = "0.32.0" as const
5+
export const version = "0.33.0" as const

0 commit comments

Comments
 (0)