We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd094de commit 5280377Copy full SHA for 5280377
Gruntfile.js
@@ -8,7 +8,6 @@ const cp = require('child_process')
8
const path = require('path');
9
const validate = require('css-validator');
10
const {glob} = require('glob');
11
-
12
const pattern = `2015-${new Date().getFullYear()}`;
13
14
module.exports = (grunt) => {
@@ -90,7 +89,7 @@ module.exports = (grunt) => {
90
89
})
91
return invalidFiles.length === 0
92
93
- grunt.registerTask('validate', 'validate css bundle with W3C Jigsaw', () => {
+ grunt.registerTask('validate', 'validate css bundle with W3C Jigsaw', function() {
94
let css = '', srcPath = '';
95
glob("*.css", {}, (err, files) => {
96
files.forEach(file => {
0 commit comments