postcss-reduce-initial 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +4 -0
- package/README.md +12 -3
- package/data/values.json +1 -1
- package/package.json +11 -6
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -45,10 +45,17 @@ See the [PostCSS documentation](https://github.com/postcss/postcss#usage) for
|
|
|
45
45
|
examples for your environment.
|
|
46
46
|
|
|
47
47
|
|
|
48
|
-
##
|
|
48
|
+
## Contributors
|
|
49
49
|
|
|
50
|
-
|
|
51
|
-
|
|
50
|
+
Thanks goes to these wonderful people ([emoji key](https://github.com/kentcdodds/all-contributors#emoji-key)):
|
|
51
|
+
|
|
52
|
+
<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
|
|
53
|
+
| [<img src="https://avatars.githubusercontent.com/u/1282980?v=3" width="100px;"/><br /><sub>Ben Briggs</sub>](http://beneb.info)<br />[💻](https://github.com/ben-eb/postcss-reduce-initial/commits?author=ben-eb) [📖](https://github.com/ben-eb/postcss-reduce-initial/commits?author=ben-eb) 👀 [⚠️](https://github.com/ben-eb/postcss-reduce-initial/commits?author=ben-eb) | [<img src="https://avatars.githubusercontent.com/u/551712?v=3" width="100px;"/><br /><sub>Chris Walker</sub>](http://thechriswalker.github.com/)<br />[🐛](https://github.com/ben-eb/postcss-reduce-initial/issues?q=author%3Athechriswalker) [💻](https://github.com/ben-eb/postcss-reduce-initial/commits?author=thechriswalker) |
|
|
54
|
+
| :---: | :---: |
|
|
55
|
+
<!-- ALL-CONTRIBUTORS-LIST:END -->
|
|
56
|
+
|
|
57
|
+
This project follows the [all-contributors] specification. Contributions of
|
|
58
|
+
any kind welcome!
|
|
52
59
|
|
|
53
60
|
|
|
54
61
|
## License
|
|
@@ -60,6 +67,8 @@ to cover it.
|
|
|
60
67
|
|
|
61
68
|
MIT © [Ben Briggs](http://beneb.info)
|
|
62
69
|
|
|
70
|
+
|
|
71
|
+
[all-contributors]: https://github.com/kentcdodds/all-contributors
|
|
63
72
|
[ci]: https://travis-ci.org/ben-eb/postcss-reduce-initial
|
|
64
73
|
[deps]: https://gemnasium.com/ben-eb/postcss-reduce-initial
|
|
65
74
|
[npm]: http://badge.fury.io/js/postcss-reduce-initial
|
package/data/values.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "postcss-reduce-initial",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Reduce initial definitions to the actual initial value, where possible.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"files": [
|
|
@@ -10,9 +10,12 @@
|
|
|
10
10
|
],
|
|
11
11
|
"scripts": {
|
|
12
12
|
"acquire": "node ./dist/acquire.js > ./data/values.json",
|
|
13
|
+
"contributorAdd": "all-contributors add",
|
|
14
|
+
"contributorGenerate": "all-contributors generate",
|
|
13
15
|
"pretest": "eslint src",
|
|
14
16
|
"prepublish": "del-cli dist && BABEL_ENV=publish babel src --out-dir dist --ignore /__tests__/",
|
|
15
|
-
"test": "ava"
|
|
17
|
+
"test": "ava",
|
|
18
|
+
"test-012": "ava"
|
|
16
19
|
},
|
|
17
20
|
"keywords": [
|
|
18
21
|
"css",
|
|
@@ -21,7 +24,8 @@
|
|
|
21
24
|
],
|
|
22
25
|
"license": "MIT",
|
|
23
26
|
"devDependencies": {
|
|
24
|
-
"
|
|
27
|
+
"all-contributors-cli": "^3.0.5",
|
|
28
|
+
"ava": "^0.17.0",
|
|
25
29
|
"babel-cli": "^6.3.17",
|
|
26
30
|
"babel-core": "^6.3.26",
|
|
27
31
|
"babel-plugin-add-module-exports": "^0.2.1",
|
|
@@ -29,10 +33,11 @@
|
|
|
29
33
|
"babel-preset-es2015-loose": "^7.0.0",
|
|
30
34
|
"babel-preset-stage-0": "^6.3.13",
|
|
31
35
|
"babel-register": "^6.9.0",
|
|
32
|
-
"cheerio": "^0.20.0",
|
|
33
36
|
"del-cli": "^0.2.0",
|
|
34
|
-
"eslint": "^
|
|
35
|
-
"eslint-config-cssnano": "^
|
|
37
|
+
"eslint": "^3.0.0",
|
|
38
|
+
"eslint-config-cssnano": "^3.0.0",
|
|
39
|
+
"eslint-plugin-babel": "^3.3.0",
|
|
40
|
+
"eslint-plugin-import": "^2.0.1",
|
|
36
41
|
"got": "^6.3.0",
|
|
37
42
|
"html2plaintext": "^1.0.1",
|
|
38
43
|
"is-html": "^1.0.0"
|