diff --git a/src/content/plugins/index.mdx b/src/content/plugins/index.mdx index 9a3022c7abc4..3c8f3d512136 100644 --- a/src/content/plugins/index.mdx +++ b/src/content/plugins/index.mdx @@ -35,7 +35,6 @@ Webpack has a rich plugin interface. Most of the features within webpack itself | [`MiniCssExtractPlugin`](/plugins/mini-css-extract-plugin) | creates a CSS file per JS file which requires CSS | | [`NoEmitOnErrorsPlugin`](/configuration/optimization/#optimizationemitonerrors) | Skip the emitting phase when there are compilation errors | | [`NormalModuleReplacementPlugin`](/plugins/normal-module-replacement-plugin) | Replace resource(s) that matches a regexp | -| [`NpmInstallWebpackPlugin`](/plugins/install-webpack-plugin) | Auto-install missing dependencies during development | | [`ProgressPlugin`](/plugins/progress-plugin) | Report compilation progress | | [`ProvidePlugin`](/plugins/provide-plugin) | Use modules without having to use import/require | | [`SourceMapDevToolPlugin`](/plugins/source-map-dev-tool-plugin) | Enables a more fine grained control of source maps | diff --git a/src/utilities/fetch-package-repos.mjs b/src/utilities/fetch-package-repos.mjs index f80187c19d01..3989c4f0a6c9 100644 --- a/src/utilities/fetch-package-repos.mjs +++ b/src/utilities/fetch-package-repos.mjs @@ -15,24 +15,14 @@ const stat = promisify(fs.stat); const fetch = { loaders: [ - { - organization: 'webpack-contrib', - suffixes: ['-loader'], - hides: excludedLoaders, - }, { organization: 'webpack', suffixes: ['-loader'], - hides: [], + hides: excludedLoaders, }, 'babel/babel-loader', ], plugins: [ - { - organization: 'webpack-contrib', - suffixes: ['-webpack-plugin', '-extract-plugin'], - hides: excludedPlugins, - }, { organization: 'webpack', suffixes: ['-webpack-plugin', '-extract-plugin'], @@ -66,6 +56,8 @@ async function main() { const repos = await paginate(organization); + console.log(repos); + return repos .map((repo) => repo.full_name) .filter((name) => suffixes.some((suffix) => name.endsWith(suffix)))