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.
40 lines
794 B
40 lines
794 B
1 year ago
|
import ascii from "rollup-plugin-ascii";
|
||
|
import node from "rollup-plugin-node-resolve";
|
||
|
import {terser} from "rollup-plugin-terser";
|
||
|
import * as meta from "./package.json";
|
||
|
|
||
|
const copyright = `// ${meta.homepage} v${meta.version} Copyright ${(new Date).getFullYear()} ${meta.author.name}`;
|
||
|
|
||
|
export default [
|
||
|
{
|
||
|
input: "index",
|
||
|
plugins: [
|
||
|
node(),
|
||
|
ascii()
|
||
|
],
|
||
|
output: {
|
||
|
extend: true,
|
||
|
banner: copyright,
|
||
|
file: "dist/d3.js",
|
||
|
format: "umd",
|
||
|
indent: false,
|
||
|
name: "d3"
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
input: "index",
|
||
|
plugins: [
|
||
|
node(),
|
||
|
ascii(),
|
||
|
terser({output: {preamble: copyright}})
|
||
|
],
|
||
|
output: {
|
||
|
extend: true,
|
||
|
file: "dist/d3.min.js",
|
||
|
format: "umd",
|
||
|
indent: false,
|
||
|
name: "d3"
|
||
|
}
|
||
|
}
|
||
|
];
|