-
Notifications
You must be signed in to change notification settings - Fork 144
/
build.js
46 lines (41 loc) · 1.14 KB
/
build.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
var fs = require('fs')
var path = require('path')
var rollup = require('rollup')
var babel = require('rollup-plugin-babel')
var version = process.env.VERSION || require('./package.json').version
var banner =
'/*!\n' +
' * Awe-dnd v' + version + '\n' +
' * (c) ' + new Date().getFullYear() + ' Awe <[email protected]>\n' +
' * Released under the MIT License.\n' +
' */'
rollup.rollup({
entry: path.resolve(__dirname, 'vue-dragging.js'),
plugins: [ babel() ]
})
.then(bundle => {
return write(path.resolve(__dirname, 'vue-dragging.es5.js'), bundle.generate({
format: 'umd',
banner: banner,
moduleName: 'VueDragging'
}).code)
})
.then(() => {
console.log('Awe-dnd v' + version + ' builded')
})
.catch(console.log)
function getSize (code) {
return (code.length / 1024).toFixed(2) + 'kb'
}
function blue (str) {
return '\x1b[1m\x1b[34m' + str + '\x1b[39m\x1b[22m'
}
function write (dest, code) {
return new Promise(function (resolve, reject) {
fs.writeFile(dest, code, function (err) {
if (err) return reject(err)
console.log(blue(dest) + ' ' + getSize(code))
resolve()
})
})
}