File tree Expand file tree Collapse file tree 1 file changed +3
-11
lines changed
Expand file tree Collapse file tree 1 file changed +3
-11
lines changed Original file line number Diff line number Diff line change @@ -15,24 +15,14 @@ const stat = promisify(fs.stat);
1515
1616const 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 ) ) )
You can’t perform that action at this time.
0 commit comments