-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGruntfile.js
93 lines (88 loc) · 2.29 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
module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
concat: {
js: {
src: [
'bower_components/jquery/dist/jquery.min.js',
'bower_components/select2/select2.js',
'bower_components/angular/angular.min.js',
'bower_components/angular-resource/angular-resource.min.js',
'bower_components/angular-route/angular-route.min.js',
'bower_components/angular-ui-select2/src/select2.js',
'bower_components/d3/d3.min.js',
'bower_components/topojson/topojson.js',
'app/js/app.js',
'app/js/controllers.js',
'app/js/directives.js',
'app/js/filters.js',
'app/js/services.js'
],
dest: 'app/js/<%= pkg.name %>.js'
}
},
uglify: {
options: {
banner: '/*! <%= pkg.name %> <%= grunt.template.today("dd-mm-yyyy") %> */\n'
},
js: {
src: '<%= concat.js.dest %>',
dest: 'app/js/<%= pkg.name %>.min.js'
}
},
copy: {
build: {
files: [
{
expand: true,
flatten: true,
src: ['bower_components/select2/select2.css', 'bower_components/select2/*.gif', 'bower_components/select2/*.png'],
dest: 'app/css/vendor/select2'
}
]
}
},
jshint: {
build: {
src: ['Gruntfile.js', 'app/js/**/*.js', '!app/js/<%= pkg.name %>.js', '!app/js/<%= pkg.name %>.min.js']
}
},
sass: {
dev: {
src: ['app/scss/*.scss'],
dest: 'app/css/<%= pkg.name %>.css',
},
prod: {
src: ['app/scss/*.scss'],
dest: 'app/css/<%= pkg.name %>.min.css',
options: {
outputStyle: 'compressed'
}
}
},
watch: {
options: {
livereload: true
},
sass: {
files: 'app/scss/*.scss',
tasks: 'sass:dev'
},
js: {
files: ['app/js/**/*.js', '!app/js/prison-data.js', '!app/js/prison-data.min.js'],
tasks: ['concat:js']
},
html: {
files: ['index.html', 'app/**/*.html']
}
}
});
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-sass');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.registerTask('default', ['sass:dev', 'jshint', 'concat', 'copy']);
grunt.registerTask('prod', ['sass:prod', 'jshint', 'uglify', 'concat', 'jshint']);
};