forked from lrsjng/h5ai
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkrfile.js
167 lines (118 loc) · 4.71 KB
/
mkrfile.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
/*jshint node: true */
'use strict';
var path = require('path');
var $ = require('fquery');
var pkg = require('./package.json');
var root = path.resolve(__dirname);
var src = path.join(root, 'src');
var build = path.join(root, 'build');
function getBuildSuffixSync() {
try {
var out = require('child_process').execSync('git rev-list v' + pkg.version + '..HEAD', {cwd: root, encoding: 'utf8'});
var lines = out.trim().split(/\r?\n/);
return '+' + ('000' + lines.length).substr(-3) + '~' + lines[0].substring(0, 7);
} catch (e) {}
return '+X';
}
$.plugin('fquery-autoprefixer');
$.plugin('fquery-cssmin');
$.plugin('fquery-handlebars');
$.plugin('fquery-includeit');
$.plugin('fquery-jade');
$.plugin('fquery-jshint');
$.plugin('fquery-jszip');
$.plugin('fquery-less');
$.plugin('fquery-uglifyjs');
module.exports = function (suite) {
suite.defaults('release');
suite.target('check-version', [], 'add git info to dev builds').task(function () {
if (pkg.develop) {
pkg.version += getBuildSuffixSync();
$.report({type: 'info', method: 'check-version', message: 'version set to ' + pkg.version});
}
});
suite.target('clean', [], 'delete build folder').task(function () {
$(build, {dirs: true}).delete();
});
suite.target('lint', [], 'lint all JavaScript files with JSHint').task(function () {
var fs = require('fs');
var jshint = JSON.parse(fs.readFileSync('.jshintrc', 'utf8'));
$(src + '/_h5ai/public/js: **/*.js, ! lib/**')
.jshint(jshint, jshint.globals);
});
suite.target('build', ['check-version', 'lint'], 'build all updated files, optionally use :uncompressed (e.g. mkr build :uncompressed)').task(function () {
var header = '/* ' + pkg.name + ' ' + pkg.version + ' - ' + pkg.homepage + ' */\n';
var env = {pkg: pkg};
var mapSrc = $.map.p(src, build).s('.less', '.css').s('.jade', '');
var mapRoot = $.map.p(root, path.join(build, '_h5ai'));
$(src + ': _h5ai/public/js/*.js')
.newerThan(mapSrc, $(src + ': _h5ai/public/js/**'))
.includeit()
.if(!suite.args.uncompressed, function () { this.uglifyjs(); })
.wrap(header)
.write(mapSrc, true);
$(src + ': _h5ai/public/css/*.less')
.newerThan(mapSrc, $(src + ': _h5ai/public/css/**'))
.includeit()
.less()
.autoprefixer()
.if(!suite.args.uncompressed, function () { this.cssmin(); })
.wrap(header)
.write(mapSrc, true);
$(src + ': **/*.jade, ! **/*.tpl.jade')
.newerThan(mapSrc)
.jade(env)
.write(mapSrc, true);
$(src + ': **, ! _h5ai/public/js/**, ! _h5ai/public/css/**, ! **/*.jade')
.newerThan(mapSrc)
.handlebars(env)
.write(mapSrc, true);
$(root + ': *.md')
.newerThan(mapRoot)
.write(mapRoot, true);
});
suite.target('deploy', ['build'], 'deploy to a specified path (e.g. mkr deploy :dest=/some/path)').task(function () {
if (!$._.isString(suite.args.dest)) {
$.report({
type: 'err',
message: 'no destination path (e.g. mkr deploy :dest=/some/path)'
});
}
var mapper = $.map.p(build, path.resolve(suite.args.dest));
$(build + ': _h5ai/**')
.newerThan(mapper)
.write(mapper, true);
});
suite.target('release', ['clean', 'build'], 'create a zipball').task(function () {
var target = path.join(build, pkg.name + '-' + pkg.version + '.zip');
$(build + ': **')
.jszip({dir: build, level: 9})
.write(target, true);
});
suite.target('build-test', ['check-version'], 'build a test suite').task(function () {
var env = {pkg: pkg};
$(src + '/_h5ai/public/css/styles.less')
.includeit()
.less()
.autoprefixer()
.write(build + '/test/h5ai-styles.css', true);
$(src + '/_h5ai/public/js/scripts.js')
.includeit()
.write(build + '/test/h5ai-scripts.js', true);
$(root + '/test/styles.less')
.includeit()
.less()
.autoprefixer()
.write(build + '/test/styles.css', true);
$(root + '/test/scripts.js')
.includeit()
.write(build + '/test/scripts.js', true);
$(root + '/test/index.html.jade')
.jade(env)
.write(build + '/test/index.html', true);
$.report({
type: 'info',
message: 'browse to file://' + build + '/test/index.html'
});
});
};