Skip to content

Commit 295cf0b

Browse files
committed
fix: compile svelte.xxx.js/ts files in Svelte 5
sveltejs/svelte#11536
1 parent 1e01360 commit 295cf0b

File tree

7 files changed

+16
-5
lines changed

7 files changed

+16
-5
lines changed

CHANGELOG.md

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

3+
## 7.2.2
4+
5+
- Svelte 5: Compile `.svelte.xxx.js/ts` files
6+
37
## 7.2.1
48

59
- Silence Svelte 5 version of unused CSS warning code if `emitCss` is `false`

index.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ const plugin_options = new Set([
1717
'preprocess',
1818
]);
1919

20+
const svelte_module_regex = /\.svelte(\.[^./\\]+)*\.(js|ts)$/;
21+
2022
let warned = false;
2123

2224
/**
@@ -130,7 +132,7 @@ module.exports = function (options = {}) {
130132
async transform(code, id) {
131133
if (!filter(id)) return null;
132134

133-
if (majorVersion > 4 && (id.endsWith('.svelte.js') || id.endsWith('.svelte.ts'))) {
135+
if (majorVersion > 4 && svelte_module_regex.test(id)) {
134136
const compiled = svelte.compileModule(code, {
135137
filename: id,
136138
dev: compilerOptions.dev,

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,5 +1,5 @@
11
{
2-
"version": "7.2.1",
2+
"version": "7.2.2",
33
"name": "rollup-plugin-svelte",
44
"description": "Compile Svelte components with Rollup",
55
"repository": "sveltejs/rollup-plugin-svelte",

test/filename-test2/src/main.js

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
export { counter } from './runes.svelte.js';
2+
export { counter2 } from './runes.svelte.foo.ts';
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
// @ts-nocheck
2+
export const counter2 = $state({ value: 0 });

test/index.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,9 @@ test('handles filenames that happen to contain ".svelte"', async () => {
319319
});
320320

321321
// Needs Svelte 5
322-
test.skip('handles ".svelte.ts/js" files', async () => {
322+
test('handles ".svelte.ts/js" files', async () => {
323+
if (!isSvelte5Plus) return;
324+
323325
sander.rimrafSync('test/filename-test2/dist');
324326
sander.mkdirSync('test/filename-test2/dist');
325327

0 commit comments

Comments
 (0)