forked from hiddentao/squel
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGruntfile.js
118 lines (112 loc) · 2.6 KB
/
Gruntfile.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
'use strict';
module.exports = function (grunt) {
require('load-grunt-tasks')(grunt);
require('time-grunt')(grunt);
var SQUEL_VERSION = require('./package.json').version;
grunt.initConfig({
clean: {
build: ['squel.js', 'squel.min.js'],
docs: 'docs'
},
coffee: {
build_basic: {
files: [{
src: 'src/squel.coffee',
dest: './squel-basic.js'
}]
},
build_full: {
options: {
join: true
},
files: [{
src: ['src/squel.coffee', 'src/postgres.coffee', 'src/mysql.coffee', 'src/mssql.coffee'],
dest: './squel.js'
}]
}
},
replace: {
squel: {
src: ['./squel-basic.js', './squel.js'],
overwrite: true,
replacements: [{
from: '<<VERSION_STRING>>',
to: SQUEL_VERSION
}]
}
},
uglify: {
build_basic: {
options: {
banner: '/*! squel | https://github.com/hiddentao/squel | BSD license */'
},
files: {
'./squel-basic.min.js': [ './squel-basic.js' ]
}
},
build_full: {
options: {
banner: '/*! squel | https://github.com/hiddentao/squel | BSD license */'
},
files: {
'./squel.min.js': [ './squel.js' ]
}
}
},
mochaTest: {
test: {
options: {
reporter: 'spec',
ui: 'exports',
require: 'coffee-script'
},
src: [
'test/baseclasses.test.coffee',
'test/blocks.test.coffee',
'test/case.test.coffee',
'test/custom.test.coffee',
'test/delete.test.coffee',
'test/expressions.test.coffee',
'test/insert.test.coffee',
'test/select.test.coffee',
'test/testbase.test.coffee',
'test/update.test.coffee'
]
},
test_mysql: {
options: {
reporter: 'spec',
ui: 'exports',
require: 'coffee-script'
},
src: ['test/mysql.test.coffee']
},
test_mssql: {
options: {
reporter: 'spec',
ui: 'exports',
require: 'coffee-script'
},
src: ['test/mssql.test.coffee']
},
test_postgres: {
options: {
reporter: 'spec',
ui: 'exports',
require: 'coffee-script'
},
src: ['test/postgres.test.coffee']
}
}
});
grunt.registerTask('build', [
'clean',
'coffee',
'replace',
'uglify',
'mochaTest'
]);
grunt.registerTask('default', [
'build'
]);
};