You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

rollup.config.js 275 B

3 年之前
1234567891011
  1. import babel from "rollup-plugin-babel";
  2. import pkg from "./package.json";
  3. export default [
  4. {
  5. input: "js/index.js",
  6. external: ["react", "react-dom", "draft-js"],
  7. output: [{ file: pkg.main, format: "umd", name: "draftjsToHtml" }],
  8. plugins: [babel()]
  9. }
  10. ];