Skip to content

Commit ae07bdc

Browse files
committed
Alternate bundler: use equivalent native plugins for built-in plugins
While we won’t use native plugins for equivalents of Next.js specific plugins, we should use these for equivalents of built-in plugins like `ProvidePlugin`, `IgnorePlugin`, and `EntryPlugin`. Otherwise, Rspack behaves unexpectedly. Test Plan: Successfully build `@formbricks/web`
1 parent 5c5207d commit ae07bdc

File tree

6 files changed

+36
-15
lines changed

6 files changed

+36
-15
lines changed

packages/next/src/build/compiler.ts

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
import { webpack } from 'next/dist/compiled/webpack/webpack'
1+
import type { webpack } from 'next/dist/compiled/webpack/webpack'
22
import type { Span } from '../trace'
3+
import getWebpackBundler from '../shared/lib/get-webpack-bundler'
34

45
export type CompilerResult = {
56
errors: webpack.StatsError[]
@@ -51,7 +52,8 @@ export function runCompiler(
5152
]
5253
> {
5354
return new Promise((resolve, reject) => {
54-
const compiler = webpack(config)
55+
const compiler = getWebpackBundler()(config)
56+
5557
// Ensure we use the previous inputFileSystem
5658
if (inputFileSystem) {
5759
compiler.inputFileSystem = inputFileSystem

packages/next/src/build/webpack-config.ts

+7-5
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,7 @@ import {
9595
} from './next-dir-paths'
9696
import { getRspackCore, getRspackReactRefresh } from '../shared/lib/get-rspack'
9797
import { RspackProfilingPlugin } from './webpack/plugins/rspack-profiling-plugin'
98+
import getWebpackBundler from '../shared/lib/get-webpack-bundler'
9899

99100
type ExcludesFalse = <T>(x: T | false) => x is T
100101
type ClientEntries = {
@@ -341,6 +342,7 @@ export default async function getBaseWebpackConfig(
341342
fetchCacheKeyPrefix?: string
342343
}
343344
): Promise<webpack.Configuration> {
345+
const bundler = getWebpackBundler()
344346
const isClient = compilerType === COMPILER_NAMES.client
345347
const isEdgeServer = compilerType === COMPILER_NAMES.edgeServer
346348
const isNodeServer = compilerType === COMPILER_NAMES.server
@@ -1867,7 +1869,7 @@ export default async function getBaseWebpackConfig(
18671869
},
18681870
plugins: [
18691871
isNodeServer &&
1870-
new webpack.NormalModuleReplacementPlugin(
1872+
new bundler.NormalModuleReplacementPlugin(
18711873
/\.\/(.+)\.shared-runtime$/,
18721874
function (resource) {
18731875
const moduleName = path.basename(
@@ -1899,7 +1901,7 @@ export default async function getBaseWebpackConfig(
18991901
: new ReactRefreshWebpackPlugin(webpack)),
19001902
// Makes sure `Buffer` and `process` are polyfilled in client and flight bundles (same behavior as webpack 4)
19011903
(isClient || isEdgeServer) &&
1902-
new webpack.ProvidePlugin({
1904+
new bundler.ProvidePlugin({
19031905
// Buffer is used by getInlineScriptSource
19041906
Buffer: [require.resolve('buffer'), 'Buffer'],
19051907
// Avoid process being overridden when in web run time
@@ -1949,7 +1951,7 @@ export default async function getBaseWebpackConfig(
19491951
// solution that requires the user to opt into importing specific locales.
19501952
// https://github.com/jmblog/how-to-optimize-momentjs-with-webpack
19511953
config.excludeDefaultMomentLocales &&
1952-
new webpack.IgnorePlugin({
1954+
new bundler.IgnorePlugin({
19531955
resourceRegExp: /^\.\/locale$/,
19541956
contextRegExp: /moment$/,
19551957
}),
@@ -1966,14 +1968,14 @@ export default async function getBaseWebpackConfig(
19661968
]
19671969

19681970
if (isClient || isEdgeServer) {
1969-
devPlugins.push(new webpack.HotModuleReplacementPlugin())
1971+
devPlugins.push(new bundler.HotModuleReplacementPlugin())
19701972
}
19711973

19721974
return devPlugins
19731975
})()
19741976
: []),
19751977
!dev &&
1976-
new webpack.IgnorePlugin({
1978+
new bundler.IgnorePlugin({
19771979
resourceRegExp: /react-is/,
19781980
contextRegExp: /next[\\/]dist[\\/]/,
19791981
}),

packages/next/src/build/webpack/plugins/define-env-plugin.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ import type {
33
NextConfigComplete,
44
} from '../../../server/config-shared'
55
import type { MiddlewareMatcher } from '../../analysis/get-page-static-info'
6-
import { webpack } from 'next/dist/compiled/webpack/webpack'
76
import { needsExperimentalReact } from '../../../lib/needs-experimental-react'
87
import { checkIsAppPPREnabled } from '../../../server/lib/experimental/ppr'
98
import {
109
getNextConfigEnv,
1110
getNextPublicEnvironmentVariables,
1211
} from '../../../lib/static-env'
12+
import getWebpackBundler from '../../../shared/lib/get-webpack-bundler'
1313

1414
type BloomFilter = ReturnType<
1515
import('../../../shared/lib/bloom-filter').BloomFilter['export']
@@ -296,5 +296,5 @@ export function getDefineEnv({
296296
}
297297

298298
export function getDefineEnvPlugin(options: DefineEnvPluginOptions) {
299-
return new webpack.DefinePlugin(getDefineEnv(options))
299+
return new (getWebpackBundler().DefinePlugin)(getDefineEnv(options))
300300
}

packages/next/src/build/webpack/plugins/flight-client-entry-plugin.ts

+6-3
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ import {
4949
} from '../../../lib/metadata/is-metadata-route'
5050
import type { MetadataRouteLoaderOptions } from '../loaders/next-metadata-route-loader'
5151
import type { FlightActionEntryLoaderActions } from '../loaders/next-flight-action-entry-loader'
52+
import getWebpackBundler from '../../../shared/lib/get-webpack-bundler'
5253

5354
interface Options {
5455
dev: boolean
@@ -784,6 +785,7 @@ export class FlightClientEntryPlugin {
784785
addRSCEntryPromise: Promise<void>,
785786
ssrDep: ReturnType<typeof webpack.EntryPlugin.createDependency>,
786787
] {
788+
const bundler = getWebpackBundler()
787789
let shouldInvalidate = false
788790

789791
const modules = Object.keys(clientImports)
@@ -853,12 +855,12 @@ export class FlightClientEntryPlugin {
853855
pluginState.injectedClientEntries[bundlePath] = clientBrowserLoader
854856
}
855857

856-
const clientComponentSSREntryDep = webpack.EntryPlugin.createDependency(
858+
const clientComponentSSREntryDep = bundler.EntryPlugin.createDependency(
857859
clientServerLoader,
858860
{ name: bundlePath }
859861
)
860862

861-
const clientComponentRSCEntryDep = webpack.EntryPlugin.createDependency(
863+
const clientComponentRSCEntryDep = bundler.EntryPlugin.createDependency(
862864
clientServerLoader,
863865
{ name: bundlePath }
864866
)
@@ -897,6 +899,7 @@ export class FlightClientEntryPlugin {
897899
createdActionIds: Set<string>
898900
fromClient?: boolean
899901
}) {
902+
const bundler = getWebpackBundler()
900903
const actionsArray = Array.from(actions.entries())
901904
for (const [, actionsFromModule] of actions) {
902905
for (const { id } of actionsFromModule) {
@@ -939,7 +942,7 @@ export class FlightClientEntryPlugin {
939942
}
940943

941944
// Inject the entry to the server compiler
942-
const actionEntryDep = webpack.EntryPlugin.createDependency(actionLoader, {
945+
const actionEntryDep = bundler.EntryPlugin.createDependency(actionLoader, {
943946
name: bundlePath,
944947
})
945948

packages/next/src/server/dev/hot-reloader-webpack.ts

+5-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import type { IncomingMessage, ServerResponse } from 'http'
66
import type { UrlObject } from 'url'
77
import type { RouteDefinition } from '../route-definitions/route-definition'
88

9-
import { webpack, StringXor } from 'next/dist/compiled/webpack/webpack'
9+
import { type webpack, StringXor } from 'next/dist/compiled/webpack/webpack'
1010
import {
1111
getOverlayMiddleware,
1212
getSourceMapMiddleware,
@@ -86,6 +86,7 @@ import { getNodeDebugType } from '../lib/utils'
8686
import { getNextErrorFeedbackMiddleware } from '../../client/components/react-dev-overlay/server/get-next-error-feedback-middleware'
8787
import { getDevOverlayFontMiddleware } from '../../client/components/react-dev-overlay/font/get-dev-overlay-font-middleware'
8888
import { getDisableDevIndicatorMiddleware } from './dev-indicator-middleware'
89+
import getWebpackBundler from '../../shared/lib/get-webpack-bundler'
8990

9091
const MILLISECONDS_IN_NANOSECOND = BigInt(1_000_000)
9192

@@ -735,7 +736,8 @@ export default class HotReloaderWebpack implements NextJsHotReloaderInterface {
735736
).client,
736737
...info,
737738
})
738-
const fallbackCompiler = webpack(fallbackConfig)
739+
740+
const fallbackCompiler = getWebpackBundler()(fallbackConfig)
739741

740742
this.fallbackWatcher = await new Promise((resolve) => {
741743
let bootedFallbackCompiler = false
@@ -1136,7 +1138,7 @@ export default class HotReloaderWebpack implements NextJsHotReloaderInterface {
11361138
// @ts-ignore webpack 5
11371139
this.activeWebpackConfigs.parallelism = 1
11381140

1139-
this.multiCompiler = webpack(
1141+
this.multiCompiler = getWebpackBundler()(
11401142
this.activeWebpackConfigs
11411143
) as unknown as webpack.MultiCompiler
11421144

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
import { webpack } from 'next/dist/compiled/webpack/webpack'
2+
import { getRspackCore } from './get-rspack'
3+
4+
/**
5+
* Depending on if Rspack is active or not, returns the appropriate set of
6+
* webpack-compatible api.
7+
*
8+
* @returns webpack bundler
9+
*/
10+
export default function getWebpackBundler(): typeof webpack {
11+
return process.env.NEXT_RSPACK ? getRspackCore() : webpack
12+
}

0 commit comments

Comments
 (0)