Skip to content

Commit

Permalink
Prepare version 3.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kristerkari committed Dec 5, 2018
1 parent 152dbae commit 75bb4db
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 24 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# HEAD
# 3.4.1

- Fixed: `at-function-named-arguments` was not correctly handling functions inside Sass maps.

Expand Down
42 changes: 25 additions & 17 deletions package-lock.json

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

20 changes: 14 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "stylelint-scss",
"description": "A collection of SCSS specific rules for stylelint",
"version": "3.4.0",
"version": "3.4.1",
"author": "Krister Kari",
"babel": {
"presets": [
Expand Down Expand Up @@ -49,7 +49,10 @@
"node": ">=6"
},
"eslintConfig": {
"extends": ["eslint:recommended", "stylelint"],
"extends": [
"eslint:recommended",
"stylelint"
],
"parserOptions": {
"sourceType": "module",
"ecmaVersion": 6
Expand Down Expand Up @@ -90,10 +93,15 @@
"lodash/no-unbound-this": "error",
"lodash/unwrap": "error",
"lodash/preferred-alias": "error",
"node/no-unsupported-features/es-syntax": ["error", {
"version": ">=6.0.0",
"ignores": ["modules"]
}]
"node/no-unsupported-features/es-syntax": [
"error",
{
"version": ">=6.0.0",
"ignores": [
"modules"
]
}
]
}
},
"files": [
Expand Down

0 comments on commit 75bb4db

Please sign in to comment.