Skip to content

Commit e77097f

Browse files
committed
Remove license again
1 parent ae199cc commit e77097f

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

rollup.config.js

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@ import fs from 'fs';
77
function license(filename) {
88
filename = filename || './LICENSE';
99
var data = fs.readFileSync(filename).toString();
10-
console.log(data);
11-
console.log(typeof data);
1210
data = '/**\n * @license\n * ' + data.trim().replace(/\n/g, '\n * ') + '\n */\n';
1311
return { banner: data };
1412
}
@@ -27,8 +25,7 @@ export default [
2725
},
2826
plugins: [
2927
resolve(),
30-
commonjs(),
31-
license('./LICENSE')
28+
commonjs()
3229
]
3330
},
3431
// Un-bundled builds.
@@ -51,8 +48,7 @@ export default [
5148
},
5249
plugins: [
5350
resolve(),
54-
commonjs(),
55-
license('./LICENSE')
51+
commonjs()
5652
]
5753
}
5854
];

0 commit comments

Comments
 (0)