From 87acd612eaba85aacb243c6d66bad10220e9fc12 Mon Sep 17 00:00:00 2001 From: Ante Budimir Date: Tue, 4 Mar 2025 22:18:10 +0200 Subject: [PATCH] =?UTF-8?q?docs=20=F0=9F=93=9D:=20add=20npm=20version=20ba?= =?UTF-8?q?dge=20and=20link=20to=20vanilla-extract?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 4 +++- package.json | 2 +- src/index.ts | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index efeef5f..469c2c7 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,8 @@ # @antebudimir/eslint-plugin-vanilla-extract -An ESLint plugin for enforcing CSS ordering in vanilla-extract css styles. Available presets are for alphabetical and +[![npm version](https://img.shields.io/npm/v/@antebudimir/eslint-plugin-vanilla-extract.svg)](https://www.npmjs.com/package/@antebudimir/eslint-plugin-vanilla-extract) + +An ESLint plugin for enforcing CSS ordering in [vanilla-extract](https://github.com/vanilla-extract-css/vanilla-extract) css styles. 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. ## Features diff --git a/package.json b/package.json index f69d7b9..ba148d1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@antebudimir/eslint-plugin-vanilla-extract", - "version": "1.0.1", + "version": "1.0.2", "description": "ESLint plugin for enforcing CSS ordering in vanilla-extract styles", "author": "Ante Budimir", "license": "MIT", diff --git a/src/index.ts b/src/index.ts index 44062cf..98cf442 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.0.1', + version: '1.0.2', }, rules: { 'alphabetical-order': alphabeticalOrderRule,