This repository has been archived by the owner on Apr 16, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 61
/
Gruntfile.js
90 lines (84 loc) · 3.48 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
module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
requirejs: {
mobileJS: {
options: {
baseUrl: "public/js/app",
wrap: true,
// Don't use almond if your project needs to load modules dynamically
name: "../libs/almond",
preserveLicenseComments: false,
optimize: "uglify",
optimizeCss: "standard",
mainConfigFile: "public/js/app/config/config.js",
include: ["init/MobileInit"],
out: "public/js/app/init/MobileInit.min.js",
/*********
* https://github.com/SlexAxton/require-handlebars-plugin
*/
pragmasOnSave: {
//removes Handlebars.Parser code (used to compile template strings) set
//it to `false` if you need to parse template strings even after build
excludeHbsParser : true,
// kills the entire plugin set once it's built.
excludeHbs: true,
// removes i18n precompiler, handlebars and json2
excludeAfterBuild: true
},
locale: "en_us",
// options object which is passed to Handlebars compiler
hbs : {
templateExtension: "html",
helperDirectory: "templates/helpers/",
i18nDirectory: "templates/i18n/",
compileOptions: {}
}
}
},
mobileCSS: {
options: {
optimizeCss: "standard",
cssIn: "./public/css/mobile.css",
out: "./public/css/mobile.min.css"
}
},
desktopJS: {
options: {
baseUrl: "public/js/app",
wrap: true,
// Cannot use almond since it does not currently appear to support requireJS's config-map
name: "../libs/almond",
preserveLicenseComments: false,
optimize: "uglify",
mainConfigFile: "public/js/app/config/config.js",
include: ["init/DesktopInit"],
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
}
}
}
});
grunt.loadNpmTasks('grunt-contrib-requirejs');
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.registerTask('test', ['jshint']);
grunt.registerTask('build', ['requirejs:desktopJS', 'requirejs:mobileJS', 'requirejs:desktopCSS', 'requirejs:mobileCSS']);
grunt.registerTask('default', ['test', 'build']);
};