-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathGruntfile.js
61 lines (54 loc) · 1.12 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
module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
stylelint: {
src: [ "src/*.css" ]
},
concat: {
options: {
sourceMap: true
},
dist: {
src: 'src/*.css',
dest: 'tmp-style.css'
}
},
postcss: {
options: {
map: true,
diff: false,
processors: [
require( "autoprefixer" )( {
browsers: [ "> 1%", "ie 8-11", "Firefox ESR" ]
} )
]
},
dist: {
src: "tmp-style.css",
dest: "style.css"
}
},
clean: {
options: {
force: true
},
temp: [ 'tmp-style.css', 'tmp-style.css.map' ]
},
phpcs: {
plugin: {
src: './'
},
options: {
bin: "vendor/bin/phpcs --extensions=php --ignore=\"*/vendor/*,*/node_modules/*\"",
standard: "phpcs.ruleset.xml"
}
}
});
grunt.loadNpmTasks( "grunt-postcss" );
grunt.loadNpmTasks( "grunt-contrib-concat" );
grunt.loadNpmTasks( "grunt-contrib-clean" );
grunt.loadNpmTasks( "grunt-phpcs" );
grunt.loadNpmTasks( "grunt-stylelint" );
// Default task(s).
grunt.registerTask('default', [ 'stylelint', 'concat', 'postcss', 'clean', 'phpcs' ]);
};