This repository has been archived by the owner on Jun 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Gruntfile.js
116 lines (99 loc) · 2.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
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
/*global
module: false,
require: false
*/
module.exports = function ( grunt ) {
'use strict';
require('time-grunt')
( grunt );
require( 'matchdep' )
.filterDev( 'grunt-contrib*' )
.forEach( grunt.loadNpmTasks );
grunt.loadTasks( 'tasks' );
grunt.initConfig({
pkg : grunt.file.readJSON( 'package.json' ),
clean : {
tests : 'tmp'
},
jshint : {
options : {
jshintrc : '.jshintrc'
},
files : {
src : [
'Gruntfile.js',
'tasks/bushcaster.js',
'test/fixtures/**/*.js',
'!test/fixtures/vendor/**/*.js'
]
}
},
requirejs : {
test : {
options : {
appDir : 'test/fixtures',
baseUrl : '.',
mainConfigFile : 'test/fixtures/require-config.js',
dir : 'tmp',
keepBuildDir : true,
optimize : 'uglify2',
removeCombined : true,
modules : [
{
name : 'main',
exclude : [
'vendor/lib',
'module1/module'
]
}
]
}
}
},
nodeunit: {
tests: [
'test/*_test.js'
]
},
'bushcaster' : {
test : {
files : [
{
expand : true,
cwd : 'tmp/',
src : [ '**/*.js' ],
// dest : 'test/build/'
}
],
options : {
hashLength : 8,
removeSource : true,
requirejs : true,
noProcess : 'test/dist/vendor/**/*.js',
// refPathTransform : function ( ref ) {
// return 'x__' + ref;
// },
onComplete : function ( map, files ) {
var arr = [];
files.forEach( function ( file ) {
arr.push( '\'' + file + '\'=>\'' + map[ file ] + '\'' );
});
var out = '<?php\n\n$files = [\n\t' + arr.join( ',\n\t' ) + '\n];\n';
grunt.file.write( 'tmp/map.php', out );
grunt.file.write( 'tmp/map.json', JSON.stringify( map ) );
}
}
}
}
});
grunt.registerTask(
'default',
[
'jshint',
'clean',
'requirejs',
'bushcaster',
'nodeunit'
]
);
};