We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 72ed591 commit 84e93b4Copy full SHA for 84e93b4
1 file changed
rollup.config.js
@@ -17,8 +17,9 @@ import pkg from './package.json';
17
import typescript from 'rollup-plugin-typescript2';
18
const subpackages = require('./subpackages');
19
20
+const internalDeps = ['svelte'];
21
const external = [
- ...Object.keys(pkg.dependencies),
22
+ ...Object.keys(pkg.dependencies).filter(name => !internalDeps.includes(name)),
23
'react',
24
'socket.io-client',
25
];
0 commit comments