-
Notifications
You must be signed in to change notification settings - Fork 4
/
Gruntfile.js
89 lines (76 loc) · 1.74 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
/*jshint node: true, strict: false*/
module.exports = function( grunt ) {
var scripts = [
'js/base.js',
'js/sparkleshine.js',
'js/charparticle.js',
'js/typekit.js',
'js/init.js'
];
// add bower scripts
var bowerScripts = [
'bower_components/requestanimationframe/requestanimationframe.js'
];
var concatScripts = bowerScripts
.concat( scripts );
grunt.initConfig({
jshint: {
site: scripts,
options: grunt.file.readJSON('.jshintrc')
},
concat: {
scripts: {
// src will be set in package-sources task
src: concatScripts,
dest: 'build/js/scripts.js'
}
},
uglify: {
scripts: {
src: concatScripts,
dest: 'build/js/scripts.min.js'
}
},
copy: {
'public': {
files: [
{
expand: true,
cwd: 'public',
src: '**',
dest: 'build/',
dot: true
}
]
},
scripts: {
src: [ 'js/*' ],
dest: 'build/'
},
// TODO use Bower to get main files to copy over
bowerScripts: {
files: [
{
expand: true, // enable dynamic options
src: [ '*/*.js' ],
cwd: 'bower_components/', // set cwd, excludes it in build path
dest: 'build/js/',
flatten: true
}
]
}
}
});
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.loadNpmTasks('grunt-contrib-uglify');
// load all tasks in tasks/
grunt.loadTasks('tasks/');
grunt.registerTask( 'default', [
'jshint',
'uglify',
'templating',
'copy'
]);
};