feat 🥁: lower minimum Node.js version to 18.18.0

This commit is contained in:
Ante Budimir 2025-03-05 14:53:22 +02:00
parent 87acd612ea
commit 44aba9484a
3 changed files with 3 additions and 4 deletions

View file

@ -17,7 +17,6 @@ An ESLint plugin for enforcing CSS ordering in [vanilla-extract](https://github.
- Handles complex cases like nested objects, arrays of styles, and pseudo selectors - Handles complex cases like nested objects, arrays of styles, and pseudo selectors
- Works with camelCase properties as used in vanilla-extract - Works with camelCase properties as used in vanilla-extract
<!-- TODO: test with pre-react 18 edu-portal app to see if eslint v8 is supported -->
## Requirements ## Requirements
- ESLint 9.0.0 or higher - ESLint 9.0.0 or higher

View file

@ -1,6 +1,6 @@
{ {
"name": "@antebudimir/eslint-plugin-vanilla-extract", "name": "@antebudimir/eslint-plugin-vanilla-extract",
"version": "1.0.2", "version": "1.1.0",
"description": "ESLint plugin for enforcing CSS ordering in vanilla-extract styles", "description": "ESLint plugin for enforcing CSS ordering in vanilla-extract styles",
"author": "Ante Budimir", "author": "Ante Budimir",
"license": "MIT", "license": "MIT",
@ -49,7 +49,7 @@
"version:patch": "pnpm version patch --no-git-tag-version" "version:patch": "pnpm version patch --no-git-tag-version"
}, },
"engines": { "engines": {
"node": ">=20.18.3" "node": ">=18.18.0"
}, },
"packageManager": "pnpm@10.5.0", "packageManager": "pnpm@10.5.0",
"peerDependencies": { "peerDependencies": {

View file

@ -5,7 +5,7 @@ import customOrderRule from './css-rules/custom-order/rule-definition.js';
export const vanillaExtract = { export const vanillaExtract = {
meta: { meta: {
name: '@antebudimir/eslint-plugin-vanilla-extract', name: '@antebudimir/eslint-plugin-vanilla-extract',
version: '1.0.2', version: '1.1.0',
}, },
rules: { rules: {
'alphabetical-order': alphabeticalOrderRule, 'alphabetical-order': alphabeticalOrderRule,