Skip to content

Commit 5c1ee5a

Browse files
committed
fix: handle emitcss to css option transformation
option is different in Svelte 4
1 parent 064aca2 commit 5c1ee5a

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# svelte-loader changelog
22

3+
## 3.1.9
4+
5+
* Handle `emitCSS` to `css` option transformation correctly for Svelte 4
6+
37
## 3.1.8
48

59
* Get ready for Svelte 4

index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ module.exports = function(source, map) {
7373

7474
const compileOptions = {
7575
filename: this.resourcePath,
76-
css: !options.emitCss,
76+
css: VERSION[0] === '3' ? !options.emitCss : (options.emitCss ? 'external' : 'injected'),
7777
...options.compilerOptions
7878
};
7979
if (VERSION[0] === '3') {

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "svelte-loader",
3-
"version": "3.1.8",
3+
"version": "3.1.9",
44
"author": "Nico Rehwaldt <[email protected]>",
55
"description": "A webpack loader for svelte",
66
"license": "MIT",

0 commit comments

Comments
 (0)