-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
103 lines (94 loc) · 2.41 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
module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
compass: {
dist: {
options: {
importPath: 'bower_components/foundation/scss',
outputStyle: 'expanded',
sassDir: 'scss',
cssDir: 'css',
sourcemap: true
}
}
},
concat: {
dist: {
src: ['js/scripts/modernizr.js', 'js/scripts/lodash.js', 'js/scripts/app.js'],
dest: 'js/scripts/build.js'
}
},
copy: {
main: {
files: [
{ //foundation
nonull: true,
src: 'bower_components/foundation/js/foundation.min.js',
dest: 'js/foundation.min.js'
},
{ //modernizr
nonull: true,
src: 'bower_components/modernizr/modernizr.js',
dest: 'js/scripts/modernizr.js'
},
{ //lodash
nonull: true,
src: 'bower_components/lodash/lodash.js',
dest: 'js/scripts/lodash.js'
},
{ //fontawesome css
nonull: true,
src: 'bower_components/fontawesome/css/font-awesome.min.css',
dest: 'css/font-awesome.min.css'
},
{ //fontawesome fonts
flatten: true,
expand: true,
nonull: true,
src: 'bower_components/fontawesome/fonts/*',
dest: 'fonts/'
}
]
}
},
sass: {
options: {
includePaths: ['bower_components/foundation/scss']
},
dist: {
options: {
outputStyle: 'expanded',
sourceMap: true
},
files: {
'css/uthsc.css': 'scss/uthsc.scss'
}
}
},
uglify: {
options: {
mangle: false
},
my_target: {
files: {
'js/app.min.js' : ['js/scripts/build.js']
}
}
},
watch: {
grunt: { files: ['Gruntfile.js'] },
sass: {
files: 'scss/**/*.scss',
tasks: ['sass']
}
}
});
grunt.loadNpmTasks('grunt-contrib-concat')
grunt.loadNpmTasks('grunt-contrib-compass')
grunt.loadNpmTasks('grunt-sass');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.registerTask('build', ['copy', 'concat', 'uglify']);
grunt.registerTask('default', ['sass','watch']);
}