-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(webpack): add webpack plugin #11966
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
aa1dcbc
to
4cc7b34
Compare
4cc7b34
to
2fd5b8b
Compare
2fd5b8b
to
88480e2
Compare
88480e2
to
fd670dc
Compare
fd670dc
to
4fe7e32
Compare
4fe7e32
to
ff6470f
Compare
ff6470f
to
ff3dcac
Compare
ff3dcac
to
851d02d
Compare
851d02d
to
2b0e784
Compare
2b0e784
to
b672449
Compare
b672449
to
0d66f16
Compare
0d66f16
to
582ffe5
Compare
582ffe5
to
eff38f7
Compare
eff38f7
to
2941585
Compare
d62a301
to
345df9d
Compare
345df9d
to
fa17c5b
Compare
fa17c5b
to
979e8b3
Compare
979e8b3
to
9a79dd5
Compare
1e84564
to
b54c195
Compare
8e273ad
to
3f19415
Compare
3f19415
to
3306f7d
Compare
3306f7d
to
0b3a6ab
Compare
0b3a6ab
to
c379fd1
Compare
c379fd1
to
cadc4d1
Compare
isScriptOptimizeOn, | ||
emitDecoratorMetadata, | ||
configuration: overrides?.configuration ?? context.configurationName, | ||
}, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks like the skipTypeCheck property is missing. How to override it from executor config?
This pull request has already been merged/closed. If you experience issues related to these changes, please open a new issue referencing this pull request. |
This PR moves webpack-specific generators and executors to the new @nrwl/webpack plugin. This change is the first step to enabling more bundlers like esbuild, vite, etc.
Changes
@nrwl/webpack:webpack
with support for babel, swc, and tsc@nrwl/web:dev-server
executor to@nrwl/webpack:dev-server
@nrwl/web:webpack
re-exports@nrwl/webpack:webpack
@nrwl/webpack:dev-server
re-exports@nrwl/webpack:dev-server
@nrwl/node:webpack
invokes@nrwl/webpack:webpack
withtarget: 'node'
@nrwl/web
are re-exported from@nrwl/webpack
for backwards compatibility@nrwl/webpack
@nrwl/web:webpack
replaced by@nrwl/webpack:webpack
@nrwl/web:dev-server
replaced by@nrwl/webpack:dev-server
@nrwl/node:webpack
replaced by@nrwl/webpack:webpack
(with options{ compiler: 'tsc', target: 'node' }
)