Skip to content

Commit ab75301

Browse files
committed
fix
1 parent dfba596 commit ab75301

File tree

753 files changed

+32905
-24247
lines changed

Some content is hidden

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

753 files changed

+32905
-24247
lines changed

cmd/tasks/npm-data/list-maintained-plugins.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ export async function listMaintainedPlugins() {
6868
// Plugin must at least be downloaded a 50 times a month.
6969
// Anything less than that could be a single user or bot traffic.
7070

71-
if (Array.isArray(pluginData._downloads) && Math.max.apply(null, pluginData._downloads) < 50) {
71+
if (Array.isArray(pluginData._downloads) && (pluginData._downloads.reduce((a, b) => a + b) / pluginData._downloads.length) < 50) {
7272
continue;
7373
}
7474

cmd/tasks/npm-data/list-plugins-by-query.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { invalidForks } from "../../config/invalid-forks.mjs";
66
import { packageNameAndScope } from "../util/package-name-and-scope.mjs";
77

88
async function fetchPlugins(query, offset) {
9-
await new Promise((resolve) => setTimeout(resolve, 100));
9+
await new Promise((resolve) => setTimeout(resolve, 500));
1010
const response = await fetch(`${query}&from=${offset}&size=250`);
1111
if (response.status !== 200) {
1212
throw new Error(`Fetching plugins : ${response.statusText}`);

cmd/tasks/util/fetch-download-count.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
export async function fetchDownloadCount(name) {
2-
await new Promise((resolve) => setTimeout(resolve, 100));
2+
await new Promise((resolve) => setTimeout(resolve, 500));
33
const response = await fetch(`https://api.npmjs.org/downloads/point/last-month/${name}`);
44
if (response.status !== 200) {
55
throw new Error(`Fetching downloads count : ${response.statusText}`);

cmd/tasks/util/fetch-plugin.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
export async function fetchPlugin(name) {
2-
await new Promise((resolve) => setTimeout(resolve, 100));
2+
await new Promise((resolve) => setTimeout(resolve, 500));
33
const response = await fetch(`https://registry.npmjs.org/${name}`);
44
if (response.status !== 200) {
55
throw new Error(`Fetching detailed plugin data : ${response.statusText}`);

npm-data/last-version/@wordpress/postcss-themes.json

Lines changed: 54 additions & 54 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
{
22
"name": "@wordpress/postcss-themes",
3-
"version": "6.34.0",
4-
"description": "PostCSS plugin to generate theme colors.",
5-
"author": "The WordPress Contributors",
6-
"license": "GPL-2.0-or-later",
3+
"version": "6.35.0",
74
"keywords": [
85
"wordpress",
96
"gutenberg",
@@ -14,52 +11,9 @@
1411
"colors",
1512
"themes"
1613
],
17-
"homepage": "https://github.com/WordPress/gutenberg/tree/HEAD/packages/postcss-themes/README.md",
18-
"repository": {
19-
"type": "git",
20-
"url": "https://github.com/WordPress/gutenberg.git",
21-
"directory": "packages/postcss-themes"
22-
},
23-
"bugs": {
24-
"url": "https://github.com/WordPress/gutenberg/issues"
25-
},
26-
"engines": {
27-
"node": ">=18.12.0",
28-
"npm": ">=8.19.2"
29-
},
30-
"main": "index.js",
31-
"exports": {
32-
".": "./index.js",
33-
"./package.json": "./package.json"
34-
},
35-
"peerDependencies": {
36-
"postcss": "^8.0.0"
37-
},
38-
"publishConfig": {
39-
"access": "public"
40-
},
41-
"gitHead": "ceebff807958d2e8fc755b5a20473939c78b4d1d",
42-
"_nodeVersion": "20.19.5",
43-
"_npmVersion": "lerna/8.1.9/[email protected]+x64 (linux)",
44-
"_id": "@wordpress/[email protected]",
45-
"dist": {
46-
"integrity": "sha512-HTSNY3EnXBIsRjx8kxTib6sk6lLv+24rgdlS3JsaNuup1/vdPWEIkftXIupXNQzM6wPH2P9AOyb5ZkqkhIP2Sg==",
47-
"shasum": "35c3193ab485b03d4a7175080ad8873f15b3a271",
48-
"tarball": "https://registry.npmjs.org/@wordpress/postcss-themes/-/postcss-themes-6.34.0.tgz",
49-
"fileCount": 4,
50-
"unpackedSize": 40449,
51-
"signatures": [
52-
{
53-
"keyid": "SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U",
54-
"sig": "MEYCIQCLPSlZIBiJLYHsHzjMoXa62POHUwCH3c6NtDoSIQRuMgIhAJwjxyGZLyUVzKg628ps2nmSwhN/V5+zQUmpANUOjjOu"
55-
}
56-
]
57-
},
58-
"_npmUser": {
59-
"name": "gutenbergplugin",
60-
"email": "[email protected]"
61-
},
62-
"directories": {},
14+
"author": "The WordPress Contributors",
15+
"license": "GPL-2.0-or-later",
16+
"_id": "@wordpress/[email protected]",
6317
"maintainers": [
6418
{
6519
"name": "garypendergast",
@@ -154,10 +108,56 @@
154108
"email": "[email protected]"
155109
}
156110
],
157-
"_npmOperationalInternal": {
158-
"host": "s3://npm-registry-packages-npm-production",
159-
"tmp": "tmp/postcss-themes_6.34.0_1761750850414_0.1910035471484557"
111+
"homepage": "https://github.com/WordPress/gutenberg/tree/HEAD/packages/postcss-themes/README.md",
112+
"bugs": {
113+
"url": "https://github.com/WordPress/gutenberg/issues"
114+
},
115+
"dist": {
116+
"shasum": "99ef8b9a8c9226957ca4463dc016529e62f131bc",
117+
"tarball": "https://registry.npmjs.org/@wordpress/postcss-themes/-/postcss-themes-6.35.0.tgz",
118+
"fileCount": 4,
119+
"integrity": "sha512-8IUn7a/Y1RrkxuAGxOJjyXZp4KfcN8CudcX/55mjck7Y0uLVWmcpu5HCb9IWgn5AR2jcMQcThhMdv+2J5IiY3w==",
120+
"signatures": [
121+
{
122+
"sig": "MEUCIQDp6vh/pShWrxcfxWqvBMjcQHZMMMNELUDQtVvuLLH8UwIgPy+voT6Q+65Ys9vvOx3GG4ZWW6vZbAEPp2CdWaZx5HM=",
123+
"keyid": "SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"
124+
}
125+
],
126+
"unpackedSize": 40449
127+
},
128+
"main": "index.js",
129+
"engines": {
130+
"npm": ">=8.19.2",
131+
"node": ">=18.12.0"
132+
},
133+
"exports": {
134+
".": "./index.js",
135+
"./package.json": "./package.json"
136+
},
137+
"gitHead": "77aa1f194edceafe8ac2a1b9438bf84b557e76e3",
138+
"_npmUser": {
139+
"name": "gutenbergplugin",
140+
"email": "[email protected]"
141+
},
142+
"repository": {
143+
"url": "https://github.com/WordPress/gutenberg.git",
144+
"type": "git",
145+
"directory": "packages/postcss-themes"
146+
},
147+
"_npmVersion": "lerna/8.1.9/[email protected]+x64 (linux)",
148+
"description": "PostCSS plugin to generate theme colors.",
149+
"directories": {},
150+
"_nodeVersion": "20.19.5",
151+
"publishConfig": {
152+
"access": "public"
160153
},
161154
"_hasShrinkwrap": false,
162-
"_time": "2025-10-29T15:14:10.589Z"
155+
"peerDependencies": {
156+
"postcss": "^8.0.0"
157+
},
158+
"_npmOperationalInternal": {
159+
"tmp": "tmp/postcss-themes_6.35.0_1762959362320_0.7260389545065649",
160+
"host": "s3://npm-registry-packages-npm-production"
161+
},
162+
"_time": "2025-11-12T14:56:02.477Z"
163163
}

npm-data/last-version/autoprefixer.json

Lines changed: 63 additions & 63 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,60 @@
11
{
22
"name": "autoprefixer",
3-
"version": "10.4.21",
3+
"version": "10.4.22",
4+
"description": "Parse CSS and add vendor prefixes to CSS rules using values from the Can I Use website",
5+
"engines": {
6+
"node": "^10 || ^12 || >=14"
7+
},
48
"keywords": [
59
"autoprefixer",
610
"css",
711
"prefix",
812
"postcss",
913
"postcss-plugin"
1014
],
15+
"main": "lib/autoprefixer.js",
16+
"bin": {
17+
"autoprefixer": "bin/autoprefixer"
18+
},
19+
"types": "lib/autoprefixer.d.ts",
20+
"funding": [
21+
{
22+
"type": "opencollective",
23+
"url": "https://opencollective.com/postcss/"
24+
},
25+
{
26+
"type": "tidelift",
27+
"url": "https://tidelift.com/funding/github/npm/autoprefixer"
28+
},
29+
{
30+
"type": "github",
31+
"url": "https://github.com/sponsors/ai"
32+
}
33+
],
1134
"author": {
1235
"name": "Andrey Sitnik",
1336
"email": "[email protected]"
1437
},
1538
"license": "MIT",
16-
17-
"maintainers": [
18-
{
19-
"name": "ai",
20-
"email": "[email protected]"
21-
}
22-
],
39+
"repository": {
40+
"type": "git",
41+
"url": "git+https://github.com/postcss/autoprefixer.git"
42+
},
43+
"bugs": {
44+
"url": "https://github.com/postcss/autoprefixer/issues"
45+
},
46+
"peerDependencies": {
47+
"postcss": "^8.1.0"
48+
},
49+
"dependencies": {
50+
"browserslist": "^4.27.0",
51+
"caniuse-lite": "^1.0.30001754",
52+
"fraction.js": "^5.3.4",
53+
"normalize-range": "^0.1.2",
54+
"picocolors": "^1.1.1",
55+
"postcss-value-parser": "^4.2.0"
56+
},
57+
2358
"contributors": [
2459
{
2560
"name": "Aaron",
@@ -713,73 +748,38 @@
713748
"email": "[email protected]"
714749
}
715750
],
751+
"gitHead": "73dc62c779bf51f2883f9541dc62fd164262e872",
716752
"homepage": "https://github.com/postcss/autoprefixer#readme",
717-
"bugs": {
718-
"url": "https://github.com/postcss/autoprefixer/issues"
719-
},
720-
"bin": {
721-
"autoprefixer": "bin/autoprefixer"
722-
},
753+
"_nodeVersion": "22.20.0",
754+
"_npmVersion": "10.9.3",
723755
"dist": {
724-
"shasum": "77189468e7a8ad1d9a37fbc08efc9f480cf0a95d",
725-
"tarball": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.21.tgz",
756+
"integrity": "sha512-ARe0v/t9gO28Bznv6GgqARmVqcWOV3mfgUPn9becPHMiD3o9BwlRgaeccZnwTpZ7Zwqrm+c1sUSsMxIzQzc8Xg==",
757+
"shasum": "90b27ab55ec0cf0684210d1f056f7d65dac55f16",
758+
"tarball": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.22.tgz",
726759
"fileCount": 83,
727-
"integrity": "sha512-O+A6LWV5LDHSJD3LjHYoNi4VLsj/Whi7k6zG12xTYaU4cQ8oxQGckXNX8cRHK5yOZ/ppVHe0ZBXGzSV9jXdVbQ==",
760+
"unpackedSize": 199080,
728761
"signatures": [
729762
{
730-
"sig": "MEUCIQDDvEvx86F1Kl2Jk9uzrU5mhkPo0QuAd/1ZkF+bIs0QRQIgPghUahicnY//3CA7+Tu5lMLLL3enwdd4KRAasZKf58c=",
731-
"keyid": "SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"
763+
"keyid": "SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U",
764+
"sig": "MEYCIQCZ20rACwrpfPxZ8olsg6Nc8V4CF81Ms3rOft12u1umwAIhAL24h+GXKFaA8rQ+omJzRkixb6QU6NQ9RzfgLLg9m2qe"
732765
}
733-
],
734-
"unpackedSize": 199184
735-
},
736-
"main": "lib/autoprefixer.js",
737-
"types": "lib/autoprefixer.d.ts",
738-
"engines": {
739-
"node": "^10 || ^12 || >=14"
766+
]
740767
},
741-
"funding": [
742-
{
743-
"url": "https://opencollective.com/postcss/",
744-
"type": "opencollective"
745-
},
746-
{
747-
"url": "https://tidelift.com/funding/github/npm/autoprefixer",
748-
"type": "tidelift"
749-
},
750-
{
751-
"url": "https://github.com/sponsors/ai",
752-
"type": "github"
753-
}
754-
],
755-
"gitHead": "541295c0e6dd348db2d3f52772b59cd403c59d29",
756768
"_npmUser": {
757769
"name": "ai",
758770
"email": "[email protected]"
759771
},
760-
"repository": {
761-
"url": "git+https://github.com/postcss/autoprefixer.git",
762-
"type": "git"
763-
},
764-
"_npmVersion": "10.9.2",
765-
"description": "Parse CSS and add vendor prefixes to CSS rules using values from the Can I Use website",
766772
"directories": {},
767-
"_nodeVersion": "22.14.0",
768-
"dependencies": {
769-
"picocolors": "^1.1.1",
770-
"fraction.js": "^4.3.7",
771-
"browserslist": "^4.24.4",
772-
"caniuse-lite": "^1.0.30001702",
773-
"normalize-range": "^0.1.2",
774-
"postcss-value-parser": "^4.2.0"
775-
},
776-
"_hasShrinkwrap": false,
777-
"peerDependencies": {
778-
"postcss": "^8.1.0"
779-
},
773+
"maintainers": [
774+
{
775+
"name": "ai",
776+
"email": "[email protected]"
777+
}
778+
],
780779
"_npmOperationalInternal": {
781-
"tmp": "tmp/autoprefixer_10.4.21_1741526844017_0.34655575028159324",
782-
"host": "s3://npm-registry-packages-npm-production"
780+
"host": "s3://npm-registry-packages-npm-production",
781+
"tmp": "tmp/autoprefixer_10.4.22_1762810986203_0.011609000183685714"
783782
},
784-
"_time": "2025-03-09T13:27:24.235Z"
783+
"_hasShrinkwrap": false,
784+
"_time": "2025-11-10T21:43:06.438Z"
785785
}

0 commit comments

Comments
 (0)