Skip to content

Commit

Permalink
Bring back noConflict functionality for umd module
Browse files Browse the repository at this point in the history
Rollup provides an out-of-the-box option for this, thus not going to
test (generated).
  • Loading branch information
carhartl committed Sep 7, 2019
1 parent 1657ae5 commit 56ae4f5
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions rollup.config.js
Expand Up @@ -17,7 +17,8 @@ export default [
dir: "dist",
name: "Cookies",
entryFileNames: "[name].js",
format: "umd"
format: "umd",
noConflict: true
}
]
},
Expand All @@ -35,7 +36,8 @@ export default [
dir: "dist",
name: "Cookies",
entryFileNames: "[name].min.js",
format: "umd"
format: "umd",
noConflict: true
}
],
plugins: [
Expand Down

0 comments on commit 56ae4f5

Please sign in to comment.