Skip to content

Commit

Permalink
release: 📦 version packages
Browse files Browse the repository at this point in the history
  • Loading branch information
AhmedBaset committed Aug 5, 2024
1 parent 38cd839 commit c9180bf
Show file tree
Hide file tree
Showing 7 changed files with 43 additions and 52 deletions.
5 changes: 0 additions & 5 deletions .changeset/great-ducks-smile.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/itchy-days-explain.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/itchy-knives-teach.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/olive-maps-deny.md

This file was deleted.

16 changes: 0 additions & 16 deletions .changeset/shiny-kangaroos-hunt.md

This file was deleted.

55 changes: 42 additions & 13 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,42 @@
# Changelog

## [0.2.0] - 2023-09-08

### Fixed

- `no-physical-properties` rule now correctly handles classes with !important like `!pl-1` flag and modifiers like `hover:` (#1)

## [0.1.0] - 2023-08-24

### Added

- `no-physical-properties` rule
# Changelog

## 0.4.0

### Minor Changes

- [#57](https://github.com/AhmedBaset/eslint-plugin-rtl-friendly/pull/57) [`9c85bbb`](https://github.com/AhmedBaset/eslint-plugin-rtl-friendly/commit/9c85bbb0e288ade8a470282ab7a63c6f52bab613) Thanks [@AhmedBaset](https://github.com/AhmedBaset)! - # Add support for extra className cases

Previously the plugin only supported literal values like `className="..."`, which lead to a big miss, Now it supports more cases:

- `className={"..."}` (Auto Fixable)
- Template Literal: ` className={``} ` (Auto Fixable)
- Terenary Operator: `className={condition ? "..." : "..."}`:
- It reports errors on both consequent and alternate values
- But it only fixes the consequent value

Currently, Auto Fixing works with only literal values but the goal is to get it to fix all expressions

### Patch Changes

- [#60](https://github.com/AhmedBaset/eslint-plugin-rtl-friendly/pull/60) [`affc583`](https://github.com/AhmedBaset/eslint-plugin-rtl-friendly/commit/affc583c48778feea27ff068eaa7ae068e8920c3) Thanks [@AhmedBaset](https://github.com/AhmedBaset)! - Add auto-fixing for ternary operator

- [#54](https://github.com/AhmedBaset/eslint-plugin-rtl-friendly/pull/54) [`b305432`](https://github.com/AhmedBaset/eslint-plugin-rtl-friendly/commit/b305432125e5b911085cc6c1ade88cb2ea3f8111) Thanks [@AhmedBaset](https://github.com/AhmedBaset)! - Restructure the codebase:

- Integrate Changeset to document the updates.
- Move rule definition, its tests, and docs to a folder in `src/rules` instead of the horizontal structure.

- [#61](https://github.com/AhmedBaset/eslint-plugin-rtl-friendly/pull/61) [`07bbde9`](https://github.com/AhmedBaset/eslint-plugin-rtl-friendly/commit/07bbde9c715792954c5af91f7426bda66bea5bf7) Thanks [@AhmedBaset](https://github.com/AhmedBaset)! - feat: CallExpression, ArrayExpression, ObjectExpression

- [#63](https://github.com/AhmedBaset/eslint-plugin-rtl-friendly/pull/63) [`6b98d59`](https://github.com/AhmedBaset/eslint-plugin-rtl-friendly/commit/6b98d5904908fb023c763393a3f66e0836c20700) Thanks [@AhmedBaset](https://github.com/AhmedBaset)! - Vitest instead of Jest

## [0.2.0] - 2023-09-08

### Fixed

- `no-physical-properties` rule now correctly handles classes with !important like `!pl-1` flag and modifiers like `hover:` (#1)

## [0.1.0] - 2023-08-24

### Added

- `no-physical-properties` rule
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-rtl-friendly",
"version": "0.3.0",
"version": "0.4.0",
"description": "Encourage the use of RTL-friendly styles",
"author": {
"name": "Ahmed Abdelbaset",
Expand Down

0 comments on commit c9180bf

Please sign in to comment.