From 223a81dddf3158ec04dbf2225fa243fb5659fe60 Mon Sep 17 00:00:00 2001 From: Ante Budimir Date: Wed, 5 Mar 2025 20:55:58 +0200 Subject: [PATCH] =?UTF-8?q?chore=20=F0=9F=94=A8:=20add=20.npmignore=20to?= =?UTF-8?q?=20exclude=20development=20files=20from=20npm=20package?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .npmignore | 2 ++ package.json | 2 +- src/index.ts | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) create mode 100644 .npmignore diff --git a/.npmignore b/.npmignore new file mode 100644 index 0000000..5caad24 --- /dev/null +++ b/.npmignore @@ -0,0 +1,2 @@ +src/css-sample/ +src/**/*.test.ts diff --git a/package.json b/package.json index 5aca77c..769e147 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@antebudimir/eslint-plugin-vanilla-extract", - "version": "1.1.1", + "version": "1.1.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 f70b756..25107bf 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.1.1', + version: '1.1.2', }, rules: { 'alphabetical-order': alphabeticalOrderRule,