mirror of
https://github.com/antebudimir/eslint-plugin-vanilla-extract.git
synced 2025-12-31 08:53:33 +00:00
chore 📦: update project dependencies to latest versions
This commit is contained in:
parent
46751da51b
commit
d7b0ca87b4
4 changed files with 466 additions and 272 deletions
|
|
@ -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/),
|
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).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
## [1.5.1] - 2025-03-12
|
||||||
|
|
||||||
|
- Update project dependencies to latest versions ()
|
||||||
|
|
||||||
## [1.5.0] - 2025-03-12
|
## [1.5.0] - 2025-03-12
|
||||||
|
|
||||||
- Fix handling of missing groupOrder configuration ()
|
- Fix handling of missing groupOrder configuration (46751da)
|
||||||
- Refactor negative conditions to positive ones with optional chaining
|
- Refactor negative conditions to positive ones with optional chaining
|
||||||
- Add comprehensive tests to achieve total coverage
|
- Add comprehensive tests to achieve total coverage
|
||||||
|
|
||||||
|
|
|
||||||
31
package.json
31
package.json
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@antebudimir/eslint-plugin-vanilla-extract",
|
"name": "@antebudimir/eslint-plugin-vanilla-extract",
|
||||||
"version": "1.5.0",
|
"version": "1.5.1",
|
||||||
"description": "ESLint plugin for enforcing best practices in vanilla-extract CSS styles, including CSS property ordering and additional linting rules.",
|
"description": "ESLint plugin for enforcing best practices in vanilla-extract CSS styles, including CSS property ordering and additional linting rules.",
|
||||||
"author": "Ante Budimir",
|
"author": "Ante Budimir",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
|
@ -56,29 +56,34 @@
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=18.18.0"
|
"node": ">=18.18.0"
|
||||||
},
|
},
|
||||||
"packageManager": "pnpm@10.5.0",
|
"packageManager": "pnpm@10.6.2",
|
||||||
|
"pnpm": {
|
||||||
|
"onlyBuiltDependencies": [
|
||||||
|
"esbuild"
|
||||||
|
]
|
||||||
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"eslint": ">=9.0.0"
|
"eslint": ">=9.0.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@eslint/eslintrc": "^3.3.0",
|
"@eslint/eslintrc": "^3.3.0",
|
||||||
"@types/node": "^20.17.19",
|
"@types/node": "^20.17.24",
|
||||||
"@typescript-eslint/eslint-plugin": "^8.25.0",
|
"@typescript-eslint/eslint-plugin": "^8.26.1",
|
||||||
"@typescript-eslint/parser": "^8.25.0",
|
"@typescript-eslint/parser": "^8.26.1",
|
||||||
"@typescript-eslint/rule-tester": "^8.26.0",
|
"@typescript-eslint/rule-tester": "^8.26.1",
|
||||||
"@typescript-eslint/utils": "^8.25.0",
|
"@typescript-eslint/utils": "^8.26.1",
|
||||||
"@vanilla-extract/css": "^1.17.1",
|
"@vanilla-extract/css": "^1.17.1",
|
||||||
"@vanilla-extract/recipes": "^0.5.5",
|
"@vanilla-extract/recipes": "^0.5.5",
|
||||||
"@vitest/coverage-v8": "3.0.8",
|
"@vitest/coverage-v8": "3.0.8",
|
||||||
"eslint": "^9.21.0",
|
"eslint": "^9.22.0",
|
||||||
"eslint-config-prettier": "^10.0.2",
|
"eslint-config-prettier": "^10.1.1",
|
||||||
"eslint-import-resolver-typescript": "^3.8.3",
|
"eslint-import-resolver-typescript": "^3.8.5",
|
||||||
"eslint-plugin-eslint-plugin": "^6.4.0",
|
"eslint-plugin-eslint-plugin": "^6.4.0",
|
||||||
"eslint-plugin-import": "^2.31.0",
|
"eslint-plugin-import": "^2.31.0",
|
||||||
"eslint-vitest-rule-tester": "^1.1.0",
|
"eslint-vitest-rule-tester": "^1.1.0",
|
||||||
"prettier": "^3.5.2",
|
"prettier": "^3.5.3",
|
||||||
"typescript": "^5.7.3",
|
"typescript": "^5.8.2",
|
||||||
"typescript-eslint": "^8.25.0",
|
"typescript-eslint": "^8.26.1",
|
||||||
"vitest": "^3.0.8"
|
"vitest": "^3.0.8"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
699
pnpm-lock.yaml
generated
699
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load diff
|
|
@ -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.5.0',
|
version: '1.5.1',
|
||||||
},
|
},
|
||||||
rules: {
|
rules: {
|
||||||
'alphabetical-order': alphabeticalOrderRule,
|
'alphabetical-order': alphabeticalOrderRule,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue