File tree 1 file changed +9
-1
lines changed
1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change
1
+ import { readFileSync } from "fs" ;
1
2
import { terser } from "rollup-plugin-terser" ;
2
3
import * as meta from "./package.json" ;
3
4
5
+ // Extract copyrights from the LICENSE.
6
+ const copyright = readFileSync ( "./LICENSE" , "utf-8" )
7
+ . split ( / \n / g)
8
+ . filter ( line => / ^ C o p y r i g h t \s + / . test ( line ) )
9
+ . map ( line => line . replace ( / ^ C o p y r i g h t \s + / , "" ) )
10
+ . join ( ", " ) ;
11
+
4
12
const config = {
5
13
input : "src/index.js" ,
6
14
external : Object . keys ( meta . dependencies || { } ) . filter ( key => / ^ d 3 - / . test ( key ) ) ,
@@ -10,7 +18,7 @@ const config = {
10
18
format : "umd" ,
11
19
indent : false ,
12
20
extend : true ,
13
- banner : `// ${ meta . homepage } v${ meta . version } Copyright ${ ( new Date ) . getFullYear ( ) } ${ meta . author . name } ` ,
21
+ banner : `// ${ meta . homepage } v${ meta . version } Copyright ${ copyright } ` ,
14
22
globals : Object . assign ( { } , ...Object . keys ( meta . dependencies || { } ) . filter ( key => / ^ d 3 - / . test ( key ) ) . map ( key => ( { [ key ] : "d3" } ) ) )
15
23
} ,
16
24
plugins : [ ]
You can’t perform that action at this time.
0 commit comments