We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae199cc commit e77097fCopy full SHA for e77097f
1 file changed
rollup.config.js
@@ -7,8 +7,6 @@ import fs from 'fs';
7
function license(filename) {
8
filename = filename || './LICENSE';
9
var data = fs.readFileSync(filename).toString();
10
- console.log(data);
11
- console.log(typeof data);
12
data = '/**\n * @license\n * ' + data.trim().replace(/\n/g, '\n * ') + '\n */\n';
13
return { banner: data };
14
}
@@ -27,8 +25,7 @@ export default [
27
25
},
28
26
plugins: [
29
resolve(),
30
- commonjs(),
31
- license('./LICENSE')
+ commonjs()
32
]
33
34
// Un-bundled builds.
@@ -51,8 +48,7 @@ export default [
51
48
52
49
53
50
54
55
56
57
58
];
0 commit comments