Skip to content

Commit c7683b0

Browse files
collect plugins data
1 parent b070043 commit c7683b0

205 files changed

Lines changed: 2622 additions & 2412 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

docs/index.html

Lines changed: 48 additions & 3 deletions
Large diffs are not rendered by default.

npm-data/links.json

Lines changed: 208 additions & 208 deletions
Large diffs are not rendered by default.

npm-data/maintained-plugins.json

Lines changed: 378 additions & 378 deletions
Large diffs are not rendered by default.

npm-data/maybe-plugins.json

Lines changed: 966 additions & 934 deletions
Large diffs are not rendered by default.

npm-data/plugins.json

Lines changed: 622 additions & 622 deletions
Large diffs are not rendered by default.

npm-data/plugins/@bung87/postcss-sprites.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,6 +222,7 @@
222222
"readmeFilename": "README.md",
223223
"_downloads": [
224224
62,
225-
59
225+
59,
226+
12
226227
]
227228
}

npm-data/plugins/@cookie_gg/postcss-custom-property-object.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -379,6 +379,7 @@
379379
"readmeFilename": "README.md",
380380
"_downloads": [
381381
45,
382-
12
382+
12,
383+
13
383384
]
384385
}

npm-data/plugins/@cookie_gg/postcss-responsive-easier.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1118,5 +1118,8 @@
11181118
"license": "MIT",
11191119
"readme": "# postcss-responsive-easier\n\nPostCSS plugin that makes it easier to write responsive styles.\n\n## Install\n\n```bash\nnpm i -D postcss @cookie_gg/postcss-responsive-easier\n# or\nyarn add -D postcss @cookie_gg/postcss-responsive-easier\n```\n\n## Usage\n\nYou have to use this plugin with [postcss-nested](https://github.com/postcss/postcss-nested) and set it after postcss-responsive-easier.\n\n```js:postcss.config.js\nmodule.exports = {\n ...\n plugins: [\n // other plugins...\n ['@cookie_gg/postcss-responsive-easier', {\n skip: '*',\n breakpoints: ['1000px', '750px'],\n }\n ],\n ['postcss-nested']\n ]\n ...\n}\n```\n\n```css:style.css\n/* before */\nh1 {\n font-size: 50px | 25px | 30px;\n}\n\n/* after */\n@media (min-width: 1001px) {\n h1 {\n font-size: 50px;\n }\n}\n@media (min-width: 751px) and (max-width: 1000px) {\n h1 {\n font-size: 25px;\n }\n}\n@media (max-width: 750px) {\n h1 {\n font-size: 30px;\n }\n}\n```\n\n## Options\n\n**breakpoints: `Array<String>`**\n\n> default: `['1000px', '750px']`\n\nProvide a custom set of breakpoints\n\n**skip: `String`**\n\n> default: '\\*'\n\nDefine the skip syntax used to ignore portions of the shorthand.\n\n## Experimental\n\n> this is an experimental feature, so it will become reasons of error\n\nYou can use responsive separator `|` in calc, var, rgb and rgba.\n\n```css:global.css\n:root {\n --spacing-s: 15px;\n --spacing-m: 25px;\n --spacing-l: 35px;\n}\n```\n\n```css:style.css\n/* before */\nh1 {\n font-size: calc((50px | 25px | 30px) * (2 | 3 | 4));\n padding: var((--spacing-s | --spacing-m | --spacing-l));\n}\n\n/* after */\n@media (min-width: 1001px) {\n h1 {\n font-size: calc(50px * 2);\n padding: var(--spacing-s);\n }\n}\n@media (min-width: 751px) and (max-width: 1000px) {\n h1 {\n font-size: calc(25px * 3);\n padding: var(--spacing-m);\n }\n}\n@media (max-width: 750px) {\n h1 {\n font-size: calc(30px * 4);\n padding: var(--spacing-l);\n }\n}\n```\n",
11201120
"readmeFilename": "README.md",
1121-
"_downloads": 18
1121+
"_downloads": [
1122+
18,
1123+
21
1124+
]
11221125
}

npm-data/plugins/@csstools/css-has-pseudo-experimental.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1733,5 +1733,8 @@
17331733
],
17341734
"readme": "# EXPERIMENTAL : CSS Has Pseudo [<img src=\"http://jonathantneal.github.io/js-logo.svg\" alt=\"\" width=\"90\" height=\"90\" align=\"right\">][EXPERIMENTAL CSS Has Pseudo]\n\n[![NPM Version][npm-img]][npm-url]\n[<img alt=\"Discord\" src=\"https://shields.io/badge/Discord-5865F2?logo=discord&logoColor=white\">][discord]\n\n`@csstools/css-has-pseudo-experimental` is no longer supported. Please use `css-has-pseudo` instead.\nAll issues have been resolved in the main plugin and the experimental plugin is no longer maintained.\n\n> [!CAUTION]\n> This experimental plugin no longer has any effect on the output of your CSS.\n\n[discord]: https://discord.gg/bUadyRwkJS\n[npm-img]: https://img.shields.io/npm/v/@csstools/css-has-pseudo-experimental.svg\n[npm-url]: https://www.npmjs.com/package/@csstools/css-has-pseudo-experimental\n\n[EXPERIMENTAL CSS Has Pseudo]: https://github.com/csstools/postcss-plugins/tree/main/experimental/css-has-pseudo\n[Mutation Observer polyfill]: https://github.com/webmodules/mutation-observer\n[Selectors Level 4]: https://drafts.csswg.org/selectors-4/#has-pseudo\n",
17351735
"readmeFilename": "README.md",
1736-
"_downloads": 6
1736+
"_downloads": [
1737+
6,
1738+
45
1739+
]
17371740
}

npm-data/plugins/@csstools/postcss-alpha-function.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -291,6 +291,7 @@
291291
2487463,
292292
2413628,
293293
2234873,
294-
2219931
294+
2219931,
295+
2062594
295296
]
296297
}

0 commit comments

Comments
 (0)