Skip to content

Commit

Permalink
Release v5.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
allrude committed Feb 5, 2023
1 parent 33b2cf5 commit 0ebd89d
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 9 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [5.0.3] - 2023-02-05
### Changed
- Set `color-function-notation`, to `modern`, closes #36

### Fixed
- peerDependencies

## [5.0.2] - 2022-12-31
### Added
- `stylelint-ignore` to ignorePattern for `max-line-length`
Expand Down
16 changes: 12 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 14 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "@fylgja/stylelint-config",
"version": "5.0.2",
"version": "5.0.3",
"description": "Sharable stylelint config used by Fylgja packages",
"homepage": "https://getfylgja.com/",
"homepage": "https://fylgja.dev/",
"repository": "https://github.com/fylgja/stylelint-config",
"bugs": "https://github.com/fylgja/stylelint-config/issues",
"author": "Fylgja",
Expand All @@ -16,24 +16,33 @@
],
"main": "index.js",
"unpkg": "index.json",
"files": ["*.js", "rules/*.js"],
"files": [
"*.js",
"rules/*.js"
],
"engines": {
"node": ">=14.0"
},
"scripts": {
"test:tailwind": "stylelint _tests_/tailwind.css --config tailwind.js",
"test:scss": "stylelint _tests_/index.scss --config scss.js",
"test:css": "stylelint _tests_/index.{css,html,vue} --config index.js",
"test": "npm run test:css && npm run test:scss && npm run test:tailwind"
},
"dependencies": {
"postcss-html": "^1.5.0",
"postcss-scss": "^4.0.4",
"stylelint-config-html": "^1.1.0",
"stylelint-config-standard": "^29.0.0",
"stylelint-scss": "^4.3.0"
},
"devDependencies": {
"postcss-html": "^1.5.0",
"postcss-scss": "^4.0.4",
"stylelint": "^14.15.0"
},
"peerDependencies": {
"postcss": "^8.4.19",
"postcss-html": "^1.5.0",
"postcss-scss": "^4.0.0",
"stylelint": "^14.14.0"
}
}

0 comments on commit 0ebd89d

Please sign in to comment.