From fb77b52800d3a0b4596319ab831d3210e9e0d912 Mon Sep 17 00:00:00 2001 From: Ante Budimir Date: Mon, 10 Mar 2025 20:04:45 +0200 Subject: [PATCH] =?UTF-8?q?docs=20=F0=9F=93=9D:=20add=20demo=20gif=20to=20?= =?UTF-8?q?README?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 6 +++++- README.md | 4 ++++ package.json | 2 +- src/index.ts | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0aa99f4..1b11492 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,9 +5,13 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.4.6] - 2025-03-10 + +- Add demo gif to README () + ## [1.4.5] - 2025-03-10 -- Add GitHub Actions workflow for linting and testing () +- Add GitHub Actions workflow for linting and testing (58249ba) ## [1.4.4] - 2025-03-10 diff --git a/README.md b/README.md index 13dd9c4..6747f57 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,10 @@ An ESLint plugin for enforcing best practices in [vanilla-extract](https://github.com/vanilla-extract-css/vanilla-extract) CSS styles, including CSS property ordering and additional linting rules. Available presets are for alphabetical and [concentric](https://rhodesmill.org/brandon/2011/concentric-css/) CSS ordering. The plugin also supports a custom group ordering option based on groups available in [concentric CSS](src/css-rules/concentric-order/concentric-groups.ts). +## Demo + +![Plugin Demo](https://github.com/user-attachments/assets/93ba118d-84df-4da0-ac68-fdb429e581d6) + ## Features - Enforces CSS property ordering in vanilla-extract style objects with two available presets: diff --git a/package.json b/package.json index 638235e..d17891b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@antebudimir/eslint-plugin-vanilla-extract", - "version": "1.4.5", + "version": "1.4.6", "description": "ESLint plugin for enforcing best practices in vanilla-extract CSS styles, including CSS property ordering and additional linting rules.", "author": "Ante Budimir", "license": "MIT", diff --git a/src/index.ts b/src/index.ts index 9202850..ae8a517 100644 --- a/src/index.ts +++ b/src/index.ts @@ -5,7 +5,7 @@ import customOrderRule from './css-rules/custom-order/rule-definition.js'; export const vanillaExtract = { meta: { name: '@antebudimir/eslint-plugin-vanilla-extract', - version: '1.4.5', + version: '1.4.6', }, rules: { 'alphabetical-order': alphabeticalOrderRule,