Skip to content

Commit

Permalink
chore: release eslint-plugin-astro (#373)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] committed Apr 29, 2024
1 parent 7695e7d commit 841aa91
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 14 deletions.
5 changes: 0 additions & 5 deletions .changeset/angry-years-behave.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/chilled-carrots-glow.md

This file was deleted.

10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# eslint-plugin-astro

## 1.1.0

### Minor Changes

- [#372](https://github.com/ota-meshi/eslint-plugin-astro/pull/372) [`9102e3d`](https://github.com/ota-meshi/eslint-plugin-astro/commit/9102e3d9bc9cd8b6bd6060a6ea943034f846da53) Thanks [@ota-meshi](https://github.com/ota-meshi)! - feat: add `astro/no-exports-from-components` rule

### Patch Changes

- [#336](https://github.com/ota-meshi/eslint-plugin-astro/pull/336) [`7695e7d`](https://github.com/ota-meshi/eslint-plugin-astro/commit/7695e7d9e08cc270a2033b68283a76a5733b8a6d) Thanks [@renovate](https://github.com/apps/renovate)! - fix(deps): update dependency globals to v15

## 1.0.3

### Patch Changes
Expand Down
7 changes: 5 additions & 2 deletions docs/rules/no-exports-from-components.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
---
title: "astro/no-exports-from-components"
description: "disallow value export"
since: "v1.1.0"
---

# astro/no-exports-from-components

> disallow value export
- ❗ <badge text="This rule has not been released yet." vertical="middle" type="error"> **_This rule has not been released yet._** </badge>

## 📖 Rule Details

This rule reports value exports from Astro components.
Expand All @@ -34,6 +33,10 @@ export const x = 42

Nothing.

## 🚀 Version

This rule was introduced in eslint-plugin-astro v1.1.0

## 🔍 Implementation

- [Rule source](https://github.com/ota-meshi/eslint-plugin-astro/blob/main/src/rules/no-exports-from-components.ts)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eslint-plugin-astro",
"version": "1.0.3",
"version": "1.1.0",
"description": "ESLint plugin for Astro component",
"main": "lib/index.js",
"module": "lib/index.mjs",
Expand Down
2 changes: 1 addition & 1 deletion src/meta.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
// This file has been automatically generated,
// in order to update its content execute "npm run update"
export const name = "eslint-plugin-astro"
export const version = "1.0.3"
export const version = "1.1.0"

0 comments on commit 841aa91

Please sign in to comment.