Skip to content

Commit 811e2be

Browse files
committed
bugfixing & housekeeping
1 parent 5c7b0ef commit 811e2be

22 files changed

+4483
-1763
lines changed

.prettierignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
public
2+
node_modules

.prettierrc

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"printWidth": 120,
3+
"trailingComma": "all",
4+
"singleQuote": false,
5+
"proseWrap": "always",
6+
"tabWidth": 4,
7+
"useTabs": true,
8+
"bracketSpacing": true,
9+
"semi": true
10+
}

.stylelintrc.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"extends": ["stylelint-config-standard-scss", "stylelint-prettier/recommended"],
3+
"rules": {
4+
"property-no-vendor-prefix": [
5+
true,
6+
{ "ignoreProperties": ["backdrop-filter", "text-size-adjust"] }
7+
]
8+
},
9+
"ignoreFiles": ["**/*", "!resources/scss/**/*.scss"]
10+
}

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to `laravel-cookie-guard` will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/)
66
and this project adheres to [Semantic Versioning](http://semver.org/).
77

8+
## v4.1.6 - Bug Fixes & Improvements
9+
10+
- Fixed the issue with the undefined `$accordionHeader` in the cookie consent dialog.
11+
- Added dev-related tools (linter, prettier, etc)
12+
- Updated dependencies to their latest versions.
13+
814
## v4.1.5 - Fixes For Safari Browser
915

1016
- Fixed the issue with the cookie consent dialog overflow in Safari.

0 commit comments

Comments
 (0)