Skip to content

Commit 58c652b

Browse files
fix: do not fetch webpack contrib
1 parent a859968 commit 58c652b

File tree

1 file changed

+3
-11
lines changed

1 file changed

+3
-11
lines changed

src/utilities/fetch-package-repos.mjs

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -15,24 +15,14 @@ const stat = promisify(fs.stat);
1515

1616
const fetch = {
1717
loaders: [
18-
{
19-
organization: 'webpack-contrib',
20-
suffixes: ['-loader'],
21-
hides: excludedLoaders,
22-
},
2318
{
2419
organization: 'webpack',
2520
suffixes: ['-loader'],
26-
hides: [],
21+
hides: excludedLoaders,
2722
},
2823
'babel/babel-loader',
2924
],
3025
plugins: [
31-
{
32-
organization: 'webpack-contrib',
33-
suffixes: ['-webpack-plugin', '-extract-plugin'],
34-
hides: excludedPlugins,
35-
},
3626
{
3727
organization: 'webpack',
3828
suffixes: ['-webpack-plugin', '-extract-plugin'],
@@ -66,6 +56,8 @@ async function main() {
6656

6757
const repos = await paginate(organization);
6858

59+
console.log(repos);
60+
6961
return repos
7062
.map((repo) => repo.full_name)
7163
.filter((name) => suffixes.some((suffix) => name.endsWith(suffix)))

0 commit comments

Comments
 (0)