Releases: salesforce/lwc-webpack-plugin
Releases · salesforce/lwc-webpack-plugin
v3.1.0
What's Changed
- chore: update dependencies by @ekashida in #34
- chore: remove stylesheetconfig by @ekashida in #35
- chore: update dependencies by @nolanlawson in #38
- chore: configure dependabot by @wjhsf in #39
- chore: bump the theoretically-non-breaking group with 4 updates by @dependabot in #40
- chore: bump braces from 3.0.2 to 3.0.3 by @dependabot in #43
- feat: added enableDynamicComponents option for Webpack by @ivanovivelin in #44
New Contributors
- @wjhsf made their first contribution in #39
- @ivanovivelin made their first contribution in #44
Full Changelog: v3.0.5...v3.1.0
v3.0.5
What's Changed
- chore: bump semver from 6.3.0 to 6.3.1 by @dependabot in #28
- chore: bump get-func-name from 2.0.0 to 2.0.2 by @dependabot in #29
- chore: bump postcss from 8.4.16 to 8.4.31 by @dependabot in #30
- chore: node v18.18.0, lwc v3.6.0 by @ekashida in #31
- chore: bump @babel/traverse from 7.16.3 to 7.23.2 by @dependabot in #32
- chore: v3.0.5 by @ekashida in #33
New Contributors
Full Changelog: v3.0.4...v3.0.5
v3.0.4
What's Changed
- chore: bump webpack from 5.74.0 to 5.76.0 by @dependabot in #22
- docs: document compiler options by @nolanlawson in #25
- Using
lwc
v3* packages breaks webpack due to @lwc/synthetic-shadow alias by @lukethacoder in #27
New Contributors
- @lukethacoder made their first contribution in #27
Full Changelog: v3.0.3...v3.0.4
v3.0.3
What's Changed
- fix: add a warning when imported non-implicit CSS file is missing by @rui-rayqiu in #20
New Contributors
- @rui-rayqiu made their first contribution in #20
Full Changelog: v3.0.2...v3.0.3
v3.0.2
v3.0.1
What's Changed
- chore: Bump terser from 5.10.0 to 5.14.2 by @dependabot in #9
- fix: use query param to detect scoped styles by @nolanlawson in #11
Full Changelog: v3.0.0...v3.0.1
v3.0.0
Breaking changes
lwc
and @lwc/module-resolver
are now peer dependencies
Rather than bundling its own version of lwc
(and other @lwc/*
packages), lwc-webpack-plugin
now requires lwc
and @lwc/module-resolver
to be installed as peer dependencies.
Run:
npm install --save-dev lwc@^2 @lwc/module-resolver@^2
This allows you to upgrade lwc
and @lwc/module-resolver
at your own pace, rather than waiting for lwc-webpack-plugin
to update its own bundled versions. Note that lwc
and @lwc/module-resolver
should have the same version.
TypeScript support is no longer built-in
Rather than handling TypeScript automatically, lwc-webpack-plugin
now requires you to bring your own TypeScript toolchain. There are instructions in the README for how to accomplish this.