Skip to content
This repository was archived by the owner on Jan 11, 2023. It is now read-only.

Commit d8c4730

Browse files
committed
don't bundle svelte/compiler (#598)
1 parent a196bcf commit d8c4730

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

rollup.config.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ import { builtinModules } from 'module';
99
const external = [].concat(
1010
Object.keys(pkg.dependencies),
1111
Object.keys(process.binding('natives')),
12-
'sapper/core.js'
12+
'sapper/core.js',
13+
'svelte/compiler'
1314
);
1415

1516
function template(kind, external) {
@@ -65,4 +66,4 @@ export default [
6566
})
6667
]
6768
}
68-
];
69+
];

0 commit comments

Comments
 (0)