-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
buildTap.js
80 lines (66 loc) · 2.43 KB
/
buildTap.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
var rollup = require('rollup');
var fs = require('fs');
var babel = require("babel-core");
var transform = require('es3ify').transform;
var less = function(a) { return a } //require('semicolon-less')
// used to track the cache for subsequent bundles
var cache;
var json = require('./package.json')
var v = 'version:' + JSON.stringify(json.version)
var sourcemaps = require('rollup-plugin-sourcemaps')
module.exports = rollup.rollup({
// The bundle's starting point. This file will be
// included, along with the minimum necessary code
// from its dependencies
entry: 'src/avalon.tap.js',
// If you have a bundle you want to re-use (e.g., when using a watcher to rebuild as files change),
// you can tell rollup use a previous bundle as its starting point.
// This is entirely optional!
cache: cache,
plugins: [
sourcemaps()
]
}).then(function(bundle) {
// Generate bundle + sourcemap
var result = bundle.generate({
sourceMap: true,
format: 'umd',
moduleName: 'avalon'
});
// Cache our bundle for later use (optional)
cache = bundle;
result.code = result.code.replace(
/Object\.defineProperty\(exports,\s*'__esModule',\s*\{\s*value:\s*true\s*\}\);/,
"exports.__esModule = true").
replace(/version\:\s*1/, v)
result = babel.transform(result.code, {
presets: ['avalon'],
compact: false
})
function heredoc(fn) {
return fn.toString().replace(/^[^\/]+\/\*!?\s?/, '').
replace(/\*\/[^\/]+$/, '').trim().replace(/>\s*</g, '><')
}
var feather = heredoc(function() {
/*
这是合并了tap的avalon
修正IE下 orderBy BUG
更改下载Promise的提示
修复avalon.modern 在Proxy 模式下使用ms-for 循环对象时出错的BUG
修复effect内部传参 BUG
重构ms-validate的绑定事件的机制
*/
})
var now = new Date
var snow = now.getFullYear() + '-' + (now.getMonth() + 1) +
'-' + now.getDate() + ':' + now.getHours() + ':' + now.getMinutes()
var banner = '/*!\nbuilt in ' + snow + ' version ' + json.version + ' by 司徒正美\n' + feather + '\n\n*/'
var code = banner + transform(result.code).
replace(/\}\)\(undefined,/, '})(this,').
replace(/avalon\$\d/g, 'avalon')
//这个不需要了
// replace(/'use strict';?/g, '')
fs.writeFileSync('./dist/avalon.tap.js', less(code));
}).catch(function(e) {
console.log('error', e)
})