/
opt
/
canhelp
/
node_modules
/
next
/
dist
/
esm
/
build
/
webpack
/
plugins
/
/opt/canhelp/node_modules/next/dist/esm/build/webpack/plugins
mkdir
upload
Name
Size
Mode
Actions
minify-webpack-plugin/
-
0755
rm
next-types-plugin/
-
0755
rm
telemetry-plugin/
-
0755
rm
wellknown-errors-plugin/
-
0755
rm
app-build-manifest-plugin.js
1851
0644
edit
dl
rm
app-build-manifest-plugin.js.map
3696
0644
edit
dl
rm
build-manifest-plugin.js
11784
0644
edit
dl
rm
build-manifest-plugin.js.map
20620
0644
edit
dl
rm
copy-file-plugin.js
1998
0644
edit
dl
rm
copy-file-plugin.js.map
3910
0644
edit
dl
rm
css-chunking-plugin.js
13962
0644
edit
dl
rm
css-chunking-plugin.js.map
20144
0644
edit
dl
rm
css-minimizer-plugin.js
3621
0644
edit
dl
rm
css-minimizer-plugin.js.map
6668
0644
edit
dl
rm
devtools-ignore-list-plugin.js
3155
0644
edit
dl
rm
devtools-ignore-list-plugin.js.map
5703
0644
edit
dl
rm
eval-source-map-dev-tool-plugin.js
9951
0644
edit
dl
rm
eval-source-map-dev-tool-plugin.js.map
17814
0644
edit
dl
rm
flight-client-entry-plugin.js
39879
0644
edit
dl
rm
flight-client-entry-plugin.js.map
65962
0644
edit
dl
rm
flight-manifest-plugin.js
21393
0644
edit
dl
rm
flight-manifest-plugin.js.map
33656
0644
edit
dl
rm
jsconfig-paths-plugin.js
7520
0644
edit
dl
rm
jsconfig-paths-plugin.js.map
14188
0644
edit
dl
rm
memory-with-gc-cache-plugin.js
4467
0644
edit
dl
rm
memory-with-gc-cache-plugin.js.map
6975
0644
edit
dl
rm
middleware-plugin.js
28463
0644
edit
dl
rm
middleware-plugin.js.map
49657
0644
edit
dl
rm
mini-css-extract-plugin.js
350
0644
edit
dl
rm
mini-css-extract-plugin.js.map
559
0644
edit
dl
rm
next-drop-client-page-plugin.js
3135
0644
edit
dl
rm
next-drop-client-page-plugin.js.map
5226
0644
edit
dl
rm
next-font-manifest-plugin.js
7218
0644
edit
dl
rm
next-font-manifest-plugin.js.map
10922
0644
edit
dl
rm
next-trace-entrypoints-plugin.js
28571
0644
edit
dl
rm
next-trace-entrypoints-plugin.js.map
45925
0644
edit
dl
rm
nextjs-require-cache-hot-reloader.js
1817
0644
edit
dl
rm
nextjs-require-cache-hot-reloader.js.map
3460
0644
edit
dl
rm
optional-peer-dependency-resolve-plugin.js
1861
0644
edit
dl
rm
optional-peer-dependency-resolve-plugin.js.map
3023
0644
edit
dl
rm
pages-manifest-plugin.js
4720
0644
edit
dl
rm
pages-manifest-plugin.js.map
9182
0644
edit
dl
rm
profiling-plugin.js
12742
0644
edit
dl
rm
profiling-plugin.js.map
22329
0644
edit
dl
rm
react-loadable-plugin.js
7873
0644
edit
dl
rm
react-loadable-plugin.js.map
13557
0644
edit
dl
rm
rspack-flight-client-entry-plugin.js
4029
0644
edit
dl
rm
rspack-flight-client-entry-plugin.js.map
8008
0644
edit
dl
rm
rspack-profiling-plugin.js
2436
0644
edit
dl
rm
rspack-profiling-plugin.js.map
3828
0644
edit
dl
rm
slow-module-detection-plugin.js
8330
0644
edit
dl
rm
slow-module-detection-plugin.js.map
13734
0644
edit
dl
rm
subresource-integrity-plugin.js
2238
0644
edit
dl
rm
subresource-integrity-plugin.js.map
4380
0644
edit
dl
rm
Edit:
/opt/canhelp/node_modules/next/dist/esm/build/webpack/plugins/react-loadable-plugin.js
(7873B)
/** COPYRIGHT (c) 2017-present James Kyle <me@thejameskyle.com> MIT License Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWAR */ // Implementation of this PR: https://github.com/jamiebuilds/react-loadable/pull/132 // Modified to strip out unneeded results for Next's specific use case import path from 'path'; import { webpack, sources } from 'next/dist/compiled/webpack/webpack'; import { DYNAMIC_CSS_MANIFEST } from '../../../shared/lib/constants'; function getModuleId(compilation, module) { return compilation.chunkGraph.getModuleId(module); } function getModuleFromDependency(compilation, dep) { return compilation.moduleGraph.getModule(dep); } function getOriginModuleFromDependency(compilation, dep) { return compilation.moduleGraph.getParentModule(dep); } function getChunkGroupFromBlock(compilation, block) { return compilation.chunkGraph.getBlockChunkGroup(block); } function buildManifest(_compiler, compilation, projectSrcDir, dev, shouldCreateDynamicCssManifest) { if (!projectSrcDir) { return { reactLoadableManifest: {}, dynamicCssManifest: [] }; } const dynamicCssManifestSet = new Set(); let manifest = {}; // This is allowed: // import("./module"); <- ImportDependency // We don't support that: // import(/* webpackMode: "eager" */ "./module") <- ImportEagerDependency // import(`./module/${param}`) <- ImportContextDependency // Find all dependencies blocks which contains a `import()` dependency const handleBlock = (block)=>{ block.blocks.forEach(handleBlock); const chunkGroup = getChunkGroupFromBlock(compilation, block); for (const dependency of block.dependencies){ if (dependency.type.startsWith('import()')) { // get the referenced module const module = getModuleFromDependency(compilation, dependency); if (!module) return; // get the module containing the import() const originModule = getOriginModuleFromDependency(compilation, dependency); const originRequest = originModule == null ? void 0 : originModule.resource; if (!originRequest) return; // We construct a "unique" key from origin module and request // It's not perfect unique, but that will be fine for us. // We also need to construct the same in the babel plugin. const key = `${path.relative(projectSrcDir, originRequest)} -> ${dependency.request}`; // Capture all files that need to be loaded. const files = new Set(); if (manifest[key]) { // In the "rare" case where multiple chunk groups // are created for the same `import()` or multiple // import()s reference the same module, we merge // the files to make sure to not miss files // This may cause overfetching in edge cases. for (const file of manifest[key].files){ files.add(file); } } // There might not be a chunk group when all modules // are already loaded. In this case we only need need // the module id and no files if (chunkGroup) { for (const chunk of chunkGroup.chunks){ chunk.files.forEach((file)=>{ if ((file.endsWith('.js') || file.endsWith('.css')) && file.match(/^static\/(chunks|css)\//)) { files.add(file); if (shouldCreateDynamicCssManifest && file.endsWith('.css')) { dynamicCssManifestSet.add(file); } } }); } } // usually we have to add the parent chunk groups too // but we assume that all parents are also imported by // next/dynamic so they are loaded by the same technique // add the id and files to the manifest const id = dev ? key : getModuleId(compilation, module); manifest[key] = { id, files: Array.from(files) }; } } }; for (const module of compilation.modules){ module.blocks.forEach(handleBlock); } manifest = Object.keys(manifest).sort()// eslint-disable-next-line no-sequences .reduce((a, c)=>(a[c] = manifest[c], a), {}); return { reactLoadableManifest: manifest, dynamicCssManifest: Array.from(dynamicCssManifestSet) }; } export class ReactLoadablePlugin { constructor(opts){ this.filename = opts.filename; this.pagesOrAppDir = opts.pagesDir || opts.appDir; this.isPagesDir = Boolean(opts.pagesDir); this.runtimeAsset = opts.runtimeAsset; this.dev = opts.dev; } createAssets(compiler, compilation) { const projectSrcDir = this.pagesOrAppDir ? path.dirname(this.pagesOrAppDir) : undefined; const shouldCreateDynamicCssManifest = !this.dev && this.isPagesDir; const { reactLoadableManifest, dynamicCssManifest } = buildManifest(compiler, compilation, projectSrcDir, this.dev, shouldCreateDynamicCssManifest); compilation.emitAsset(this.filename, new sources.RawSource(JSON.stringify(reactLoadableManifest, null, 2))); if (this.runtimeAsset) { compilation.emitAsset(this.runtimeAsset, new sources.RawSource(`self.__REACT_LOADABLE_MANIFEST=${JSON.stringify(JSON.stringify(reactLoadableManifest))}`)); } // This manifest prevents removing server rendered <link> tags after client // navigation. This is only needed under Pages dir && Production && Webpack. // x-ref: https://github.com/vercel/next.js/pull/72959 if (shouldCreateDynamicCssManifest) { compilation.emitAsset(`${DYNAMIC_CSS_MANIFEST}.json`, new sources.RawSource(JSON.stringify(dynamicCssManifest, null, 2))); // This is for edge runtime. compilation.emitAsset(`server/${DYNAMIC_CSS_MANIFEST}.js`, new sources.RawSource(`self.__DYNAMIC_CSS_MANIFEST=${JSON.stringify(JSON.stringify(dynamicCssManifest))}`)); } } apply(compiler) { compiler.hooks.make.tap('ReactLoadableManifest', (compilation)=>{ compilation.hooks.processAssets.tap({ name: 'ReactLoadableManifest', stage: webpack.Compilation.PROCESS_ASSETS_STAGE_ADDITIONS }, ()=>{ this.createAssets(compiler, compilation); }); }); } } //# sourceMappingURL=react-loadable-plugin.js.map
Save
cmd:
run