This repository was archived by the owner on Apr 16, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 128
/
Copy pathGruntfile.js
112 lines (108 loc) · 3.27 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
module.exports = function(grunt) {
var amdclean = require('amdclean'),
fs = require('fs'),
amdcleanLogic = function (data) {
var outputFile = data.path;
fs.writeFileSync(outputFile, amdclean.clean({
'code': fs.readFileSync(outputFile),
'globalObject': true,
'globalObjectName': 'BRB',
'rememberGlobalObject': false,
'removeModules': ['text'],
'prefixTransform': function(moduleName) {
return moduleName.substring(moduleName.lastIndexOf('_') + 1, moduleName.length);
},
'wrap': {
'start': '(function() {\n',
'end': '\n}());'
}
}));
};
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
requirejs: {
mobileJS: {
options: {
baseUrl: 'public/js/app',
paths: {
'mobile': 'init/MobileInit'
},
wrap: true,
// name: "../libs/almond",
onModuleBundleComplete: amdcleanLogic,
preserveLicenseComments: false,
optimize: 'uglify',
optimizeCss: 'standard',
mainConfigFile: 'public/js/app/config/config.js',
include: ['mobile'],
out: 'public/js/app/init/MobileInit.min.js'
}
},
mobileCSS: {
options: {
optimizeCss: 'standard',
cssIn: './public/css/mobile.css',
out: './public/css/mobile.min.css'
}
},
desktopJS: {
options: {
baseUrl: 'public/js/app',
paths: {
'desktop': 'init/DesktopInit'
},
wrap: true,
// name: "../libs/almond",
onModuleBundleComplete: amdcleanLogic,
preserveLicenseComments: false,
optimize: 'uglify',
mainConfigFile: 'public/js/app/config/config.js',
include: ['desktop'],
out: 'public/js/app/init/DesktopInit.min.js'
}
},
desktopCSS: {
options: {
optimizeCss: 'standard',
cssIn: './public/css/desktop.css',
out: './public/css/desktop.min.css'
}
}
},
jshint: {
files: ['Gruntfile.js', 'public/js/app/**/*.js', '!public/js/app/**/*min.js'],
options: {
globals: {
jQuery: true,
console: false,
module: true,
document: true
}
}
},
plato: {
your_task: {
options : {
exclude: /\.min\.js$/ // excludes source files finishing with ".min.js"
},
files: {
'public/reports': ['public/js/app/**/*.js']
}
}
}
});
grunt.registerTask('desktopBuild', function() {
grunt.task.run(['requirejs:desktopJS', 'requirejs:desktopCSS']);
});
grunt.registerTask('mobileBuild', function() {
grunt.task.run(['requirejs:mobileJS', 'requirejs:mobileCSS']);
});
grunt.loadNpmTasks('grunt-contrib-requirejs');
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-plato');
grunt.registerTask('test', ['jshint']);
grunt.registerTask('minify', ['requirejs:desktopJS', 'requirejs:mobileJS']);
grunt.registerTask('complexity:report', 'plato');
grunt.registerTask('build', ['desktopBuild', 'mobileBuild']);
grunt.registerTask('default', ['test', 'build', 'complexity:report']);
};