Skip to content

Commit edebc9b

Browse files
committed
3.0.0
1 parent 0e475f1 commit edebc9b

File tree

2 files changed

+24
-9
lines changed

2 files changed

+24
-9
lines changed

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+23-8
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
{
22
"name": "postcss-easing-gradients",
3-
"version": "2.2.1",
3+
"version": "3.0.0",
44
"engines": {
55
"node": ">=6.0.0"
66
},
7-
"description":
8-
"PostCSS plugin to create smooth linear-gradients that approximate easing functions.",
7+
"description": "PostCSS plugin to create smooth linear-gradients that approximate easing functions.",
98
"scripts": {
109
"test": "jest && eslint *.js",
1110
"lintfix": "eslint --fix --ext .js --ignore-path .gitignore ."
@@ -14,7 +13,12 @@
1413
"type": "git",
1514
"url": "git+https://github.com/larsenwork/postcss-easing-gradients.git"
1615
},
17-
"keywords": ["postcss", "postcss-plugin", "css", "gradients"],
16+
"keywords": [
17+
"postcss",
18+
"postcss-plugin",
19+
"css",
20+
"gradients"
21+
],
1822
"author": "Andreas Larsen <andreas@larsenwork.com> (https://larsenwork.com)",
1923
"license": "MIT",
2024
"bugs": {
@@ -45,20 +49,31 @@
4549
"prettier-eslint": "^8.8.1"
4650
},
4751
"eslintConfig": {
48-
"plugins": ["prettier"],
52+
"plugins": [
53+
"prettier"
54+
],
4955
"env": {
5056
"jest": true
5157
},
5258
"parserOptions": {
5359
"ecmaVersion": 6
5460
},
55-
"extends": ["plugin:prettier/recommended"],
61+
"extends": [
62+
"plugin:prettier/recommended"
63+
],
5664
"rules": {
5765
"prettier/prettier": [
5866
"error",
59-
{ "singleQuote": true, "trailingComma": "es5", "parser": "flow" }
67+
{
68+
"singleQuote": true,
69+
"trailingComma": "es5",
70+
"parser": "flow"
71+
}
72+
],
73+
"max-len": [
74+
"error",
75+
120
6076
],
61-
"max-len": ["error", 120],
6277
"func-style": [
6378
"error",
6479
"declaration",

0 commit comments

Comments
 (0)