Skip to content

Commit

Permalink
Make rollup.config.js more Windows-compatible
Browse files Browse the repository at this point in the history
  • Loading branch information
marijnh committed Dec 1, 2020
1 parent 52a9859 commit b5ae707
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rollup.config.js
Expand Up @@ -10,5 +10,5 @@ module.exports = {
sourcemap: true
}],
plugins: [require('@rollup/plugin-buble')()],
external(id) { return !/^[\.\/]/.test(id) }
external(id) { return id[0] != "." && !require("path").isAbsolute(id) }
}

0 comments on commit b5ae707

Please sign in to comment.