We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 973d50b commit 2445c6aCopy full SHA for 2445c6a
1 file changed
rollup.config.js
@@ -31,7 +31,8 @@ Object.keys(pkg.peerDependencies || {}).forEach(key => {
31
}
32
})
33
34
-const external = id => !id.startsWith('.') && !id.startsWith('/')
+const external = id =>
35
+ !id.startsWith('.') && !id.startsWith(process.platform === 'win32' ? process.cwd() : '/')
36
37
const getBabelOptions = ({useESModules}) => ({
38
exclude: /node_modules/,
0 commit comments