Skip to content

Commit

Permalink
(enh) add example to rollup build against CDN/esm modules
Browse files Browse the repository at this point in the history
  • Loading branch information
joshgoebel committed Sep 19, 2024
1 parent b966ec2 commit 17cfb87
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions test/builds/rollup_import_cdn_build_esm.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
// rollup.config.js
import commonjs from "@rollup/plugin-commonjs";

export default {
input: "test/builds/cdn_build_as_esm.mjs",
output: {
file: "build/bundle.js",
format: "iife",
},
plugins: [
commonjs({
include: "build/**", // Default: undefined
exclude: ["node_modules/**"], // Default: undefined
}),
],
};

0 comments on commit 17cfb87

Please sign in to comment.