forked from RocketMap/RocketMap
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gruntfile.js
83 lines (78 loc) · 1.97 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
module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
sass: {
dist: {
files: {
'static/css/main.css' : 'static/sass/main.scss'
}
}
},
jshint: {
files: ['Gruntfile.js', 'js/*.js', '!js/vendor/**/*.js'],
options: {
reporter: require('jshint-stylish'),
globals: {
jQuery: true,
console: true,
module: true,
document: true
}
}
},
uglify: {
options: {
banner: '/*\n <%= pkg.name %> <%= grunt.template.today("yyyy-mm-dd") %> \n*/\n'
},
build: {
files: {
'static/dist/js/app.min.js': 'static/js/app.js'
}
}
},
watch: {
options: {
interval: 1000,
spawn: true
},
src: {
files: ['**/*.html'],
options: { livereload: true }
},
js: {
files: ['**/*.js', '!node_modules/**/*.js', '!static/dist/**/*.js'],
options: { livereload: true },
tasks: ['uglify']
},
css: {
files: '**/*.scss',
options: { livereload: true },
tasks: ['sass', 'cssmin']
}
},
cssmin: {
options: {
banner: '/*\n <%= pkg.name %> <%= grunt.template.today("yyyy-mm-dd") %> \n*/\n'
},
build: {
files: {
'static/dist/css/app.min.css': [
'static/css/main.css',
'static/css/pokemon-sprites.css'
]
}
}
},
});
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-sass');
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.loadNpmTasks('grunt-contrib-clean');
grunt.loadNpmTasks('grunt-contrib-cssmin');
grunt.loadNpmTasks('grunt-usemin');
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-html-validation');
grunt.registerTask('default', ['jshint', 'sass', 'cssmin', 'uglify', 'watch']);
};