Skip to content

Commit

Permalink
fix: babel es module (#25)
Browse files Browse the repository at this point in the history
  • Loading branch information
forbesjo authored Apr 3, 2018
1 parent af1e762 commit 9a84461
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion scripts/rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,10 @@ export default [
legacy: true,
banner,
external: ['global/window', 'url-toolkit'],
plugins: [ json({ preferConst: true }) ],
plugins: [
json({ preferConst: true }),
babel({ exclude: 'node_modules/**' })
],
output: [
{file: 'dist/mpd-parser.es.js', format: 'es'}
]
Expand Down

0 comments on commit 9a84461

Please sign in to comment.