-
Notifications
You must be signed in to change notification settings - Fork 6
/
Gruntfile.js
145 lines (139 loc) · 4.81 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
135
136
137
138
139
140
141
142
143
144
145
module.exports = function (grunt) {
const sass = require('node-sass');
// load plugins as needed instead of up front
require('jit-grunt')(grunt);
require('phplint').gruntPlugin(grunt);
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
sass: {
options: {
implementation: sass
},
dist: {
files: {
'static/dist/css/style.built.css': 'static/sass/main.scss'
}
}
},
eslint: {
src: ['static/js/*.js', '!js/vendor/**/*.js']
},
babel: {
options: {
sourceMap: true,
presets: ['env']
},
prod: {
files: {
'static/dist/js/stats.built.js': 'static/js/stats.js',
'static/dist/js/stats.common.built.js': 'static/js/stats.common.js'
}
},
dev: {
files: {
'static/dist/js/stats.min.js': 'static/js/stats.js',
'static/dist/js/stats.common.min.js': 'static/js/stats.common.js'
}
}
},
uglify: {
options: {
banner: '/*\n <%= pkg.name %> <%= grunt.template.today("yyyy-mm-dd") %> \n*/\n',
sourceMap: true,
compress: {
unused: false
}
},
prod: {
files: {
'static/dist/js/stats.min.js': 'static/dist/js/stats.built.js',
'static/dist/js/stats.common.min.js': 'static/dist/js/stats.common.built.js'
}
}
},
minjson: {
build: {
files: {
'static/dist/data/pokemon.min.json': 'static/data/pokemon.json',
'static/dist/data/items.min.json': 'static/data/items.json',
'static/dist/data/grunttype.min.json': 'static/data/grunttype.json',
'static/dist/locales/de.min.json': 'static/locales/de.json',
'static/dist/locales/pl.min.json': 'static/locales/pl.json',
'static/dist/locales/sv.min.json': 'static/locales/sv.json',
'static/dist/locales/pt_br.min.json': 'static/locales/pt_br.json'
}
}
},
clean: {
build: {
src: 'static/dist'
}
},
watch: {
options: {
interval: 1000,
spawn: true
},
js: {
files: ['static/js/**/*.js'],
options: {livereload: true},
tasks: ['js-lint', 'js-build']
},
json: {
files: ['static/data/*.json', 'static/locales/*.json'],
options: {livereload: true},
tasks: ['json']
},
css: {
files: '**/*.scss',
options: {livereload: true},
tasks: ['css-build']
}
},
cssmin: {
options: {
banner: '/*\n <%= pkg.name %> <%= grunt.template.today("yyyy-mm-dd") %> \n*/\n'
},
build: {
files: {
'static/dist/css/style.min.css': 'static/dist/css/style.built.css'
}
}
},
phplint: {
files: ['**.php', '**/*.php', '!node_modules/**']
},
htmlmin: {
dist: {
options: {
removeComments: true,
collapseWhitespace: true
},
files: {
'index.php': 'pre-index.php'
}
}
},
cacheBust: {
options: {
assets: ['static/dist/**/*.css', 'static/dist/**/*.json', 'static/dist/**/*.js', '!static/dist/**/*built*']
},
taskName: {
files: [{
src: ['index.php']
}]
}
}
});
grunt.registerTask('js-build', ['babel:prod', 'newer:uglify']);
grunt.registerTask('js-dev', ['babel:dev']);
grunt.registerTask('css-build', ['newer:sass', 'newer:cssmin']);
grunt.registerTask('js-lint', ['newer:eslint']);
grunt.registerTask('json', ['newer:minjson']);
grunt.registerTask('php-lint', ['newer:phplint']);
grunt.registerTask('html-build', ['htmlmin', 'cacheBust']);
grunt.registerTask('build', ['clean', 'js-build', 'css-build', 'json', 'html-build']);
grunt.registerTask('dev', ['clean', 'js-dev', 'css-build', 'json', 'html-build']);
grunt.registerTask('lint', ['js-lint', 'php-lint']);
grunt.registerTask('default', ['build', 'watch']);
};