forked from tonylukasavage/titanium-os
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGruntfile.js
55 lines (49 loc) · 1.33 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
var fs = require('fs');
module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
jshint: {
options: {
jshintrc: true
},
src: ['src/titanium-os.js', 'test/**/*.js']
},
browserify: {
app: {
files: {
'titanium-os.js': ['src/titanium-os.js']
}
}
},
ti_run: {
options: {
build: {
iosVersion: '7.1'
}
},
app: {
files: {
'tmp/app/Resources': ['titanium-os.js', 'test/app.js',
'node_modules/should/should.js', 'node_modules/ti-mocha/ti-mocha.js']
}
}
},
clean: {
src: ['tmp']
}
});
// Load grunt plugins for modules
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-clean');
grunt.loadNpmTasks('grunt-browserify');
grunt.loadNpmTasks('grunt-titanium');
// finalize build
grunt.registerTask('finalize', 'finalize titanium-os.js file', function() {
var code = fs.readFileSync('titanium-os.js', 'utf8'),
match = code.match(/\[(\d+)\]\);?\s*$/);
fs.writeFileSync('titanium-os.js', 'module.exports=' + code.replace(/;\s*$/,'') +
'(' + match[1] + ');');
});
// lint and test node and titanium
grunt.registerTask('default', ['jshint', 'browserify', 'finalize', 'ti_run', 'clean']);
};