From c616fb02dc75d2b65213eb9760ba7bb32273c21c Mon Sep 17 00:00:00 2001 From: Ante Budimir Date: Wed, 5 Mar 2025 19:55:03 +0200 Subject: [PATCH] =?UTF-8?q?fix=20=F0=9F=94=A8:=20improve=20packaging=20and?= =?UTF-8?q?=20TypeScript=20configuration?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- package.json | 6 ++++-- src/index.ts | 2 +- tsconfig.json | 2 +- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index 4b6dd1f..5aca77c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@antebudimir/eslint-plugin-vanilla-extract", - "version": "1.1.0", + "version": "1.1.1", "description": "ESLint plugin for enforcing CSS ordering in vanilla-extract styles", "author": "Ante Budimir", "license": "MIT", @@ -35,7 +35,9 @@ } }, "files": [ - "dist" + "dist", + "LICENSE", + "README.md" ], "scripts": { "build": "tsc", diff --git a/src/index.ts b/src/index.ts index aa5a230..f70b756 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.0', + version: '1.1.1', }, rules: { 'alphabetical-order': alphabeticalOrderRule, diff --git a/tsconfig.json b/tsconfig.json index 9d18e4e..5c8577a 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -27,6 +27,6 @@ "verbatimModuleSyntax": true }, "include": ["src/**/*", "*.d.ts"], - "exclude": ["node_modules", "**/*.test.ts", "dist"], + "exclude": ["node_modules", "dist"], "typeRoots": ["./node_modules/@types", "./"] }