-
Notifications
You must be signed in to change notification settings - Fork 5
/
Gruntfile.js
134 lines (123 loc) · 3.58 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
jshint: {
files: [
['Gruntfile.js', 'server/**/*.js', 'index.js', 'client/collections/*.js', 'client/models/*.js', 'client/views/*.js']
],
options: {
jshintrc: '.jshintrc',
ignores: [
'client/lib/**/*.js',
'node_modules/**/*.js'
]
}
},
react: {
files: {
expand: true,
cwd: 'client/views',
src: ['*.jsx'],
dest: 'client/dist/views',
ext: '.js'
}
},
watch: {
scripts: {
files: ['client/**/*.js', 'client/**/*.jsx', 'client/*.js', 'server/**/*.js', 'server/*.js', 'index.js', 'client/styles/*.css'],
tasks: ['jshint', 'buildDev'],
options: {
spawn: false,
},
},
},
concat: {
options: {
separator: ';'
},
dist: {
src: [
'client/lib/react/react.js',
'client/lib/underscore/underscore.js',
'client/lib/jquery/dist/jquery.js',
'client/lib/backbone/backbone.js',
'client/models/*.js',
'client/collections/*.js',
'client/dist/views/Signup.js',
'client/dist/views/Login.js',
'client/dist/views/Dropdown.js',
'client/dist/views/Checklist.js',
'client/dist/views/Query.js',
'client/dist/views/ReviewMealPlan.js',
'client/dist/views/ShoppingList.js',
'client/dist/views/MealPlan.js',
'client/dist/views/MealPlanLink.js',
'client/dist/views/Navbar.js',
'client/dist/views/LandingPage.js',
'client/dist/views/CallToAction.js',
'client/dist/views/HowItWorks.js',
'client/dist/views/MealPlanLibrary.js',
'client/dist/views/NavbarLinks.js',
'client/dist/views/Recipe.js',
'client/dist/views/App.js'
],
dest: 'client/dist/public/<%= pkg.name %>.js'
}
},
uglify: {
options: {
banner: '/*! <%= pkg.name %> <%= grunt.template.today("dd-mm-yyyy") %> */\n'
},
dist: {
files: {
'client/dist/public/<%= pkg.name %>.js': ['<%= concat.dist.dest %>']
}
}
},
copy: {
css: {
expand: true,
cwd: 'client/lib/bootstrap/dist/fonts/',
src: '**',
dest: 'client/dist/fonts',
flatten: true,
filter: 'isFile'
},
images: {
expand: true,
cwd: 'client/images/',
src: '**',
dest: 'client/dist/images',
flatten: true,
filter: 'isFile'
}
},
cssmin: {
options: {
keepSpecialComments: 0
},
dist: {
files: {
'client/dist/public/style.min.css': ['client/styles/bootstrap.min.css', 'client/styles/main.css']
}
}
},
nodemon: {
dev: {
script: 'index.js'
}
}
});
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.loadNpmTasks('grunt-contrib-cssmin');
grunt.loadNpmTasks('grunt-nodemon');
grunt.loadNpmTasks('grunt-react');
grunt.registerTask('default', ['jshint', 'buildDev', 'watch']);
grunt.registerTask('serve', ['jshint', 'buildDev', 'nodemon']);
grunt.registerTask('buildDev', ['react', 'concat', 'copy', 'cssmin']);
grunt.registerTask('buildProduction', ['react', 'concat', 'uglify', 'copy', 'cssmin']);
};