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 8, 2019
1 parent 60e9ed8 commit ac129d2
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 ac129d2

Please sign in to comment.