Skip to content

Commit

Permalink
Merge branch 'release/2.5.10' into craft-vite
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Welch committed May 2, 2022
2 parents de9d24a + 60eb925 commit 14ff7d3
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 11 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# nystudio107/craft Change Log

## 2.5.10 - 2022.05.02
### Changed
* Ignore `max-line-length` rule

### Fixed
* Fix eslint errors pinning `vite-plugin-eslint` to `1.3.0`

## 2.5.9 - 2022.05.02
### Fixed
* Clean up initial check for `composer.lock` or `vendor/autoload.php` to ensure the first-time install is done
Expand Down
22 changes: 13 additions & 9 deletions buildchain/.stylelintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,18 @@
],
"rules": {
"at-rule-no-unknown": null,
"scss/at-rule-no-unknown": [ true, {
"ignoreAtRules": [
"screen",
"extends",
"responsive",
"tailwind"
]
}],
"block-no-empty": null
"scss/at-rule-no-unknown": [
true,
{
"ignoreAtRules": [
"screen",
"extends",
"responsive",
"tailwind"
]
}
],
"block-no-empty": null,
"max-line-length": null
}
}
4 changes: 2 additions & 2 deletions buildchain/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"@vitejs/plugin-vue": "^1.2.2",
"@vue/compiler-sfc": "^3.0.5",
"autoprefixer": "^10.4.0",
"eslint": "^7.0.0",
"eslint": "^8.0.0",
"eslint-plugin-vue": "^8.0.0",
"postcss": "^8.4.0",
"rollup-plugin-critical": "^1.0.4",
Expand All @@ -32,7 +32,7 @@
"vue-eslint-parser": "^8.0.0",
"vite": "^2.7.0",
"vite-plugin-compression": "^0.4.0",
"vite-plugin-eslint": "^1.3.0",
"vite-plugin-eslint": "1.3.0",
"vite-plugin-favicon2": "^1.1.3",
"vite-plugin-manifest-sri": "^0.1.0",
"vite-plugin-restart": "0.0.2"
Expand Down

0 comments on commit 14ff7d3

Please sign in to comment.