Skip to content
This repository was archived by the owner on Jan 18, 2022. It is now read-only.

Commit e68e918

Browse files
thghznck
authored andcommitted
Remove Bublé and some refactoring
1 parent 58140d0 commit e68e918

File tree

13 files changed

+200
-586
lines changed

13 files changed

+200
-586
lines changed

config/banner.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const YEAR = new Date().getFullYear();
77

88
const BANNER = `/*!
99
* ${pack.name} v${VERSION}
10-
* (c) ${YEAR} ${pack.author.name}
10+
* (c) ${YEAR} ${pack.author}
1111
* Release under the ${pack.license} License.
1212
*/`;
1313

config/build.js

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
const buble = require('rollup-plugin-buble');
44
const rollup = require('rollup');
5-
const replace = require('rollup-plugin-replace');
65
const zlib = require('zlib');
76
const fs = require('fs');
87
const pack = require('../package.json');
@@ -21,11 +20,7 @@ fs.writeFileSync('src/index.js', main);
2120
rollup.rollup({
2221
entry: 'src/index.js',
2322
plugins: [
24-
buble({
25-
transforms: {
26-
dangerousForOf: true
27-
}
28-
})
23+
buble()
2924
]
3025
})
3126
.then(function (bundle) {

0 commit comments

Comments
 (0)