Ver código fonte

Update gulpfile

Jay Salvat 8 anos atrás
pai
commit
8233516a50
1 arquivos alterados com 3 adições e 3 exclusões
  1. 3 3
      gulpfile.js

+ 3 - 3
gulpfile.js

@@ -256,7 +256,7 @@
             changelog = fs.readFileSync(filename).toString(),
             lastDate  = /\d{4}-\d{2}-\d{2}/.exec(changelog)[0];
 
-        exec('git log --since="' + lastDate + '" --oneline --pretty=format:"%s"', function (err, stdout) {
+        exec('git log --since="' + lastDate + ' 00:00:00" --oneline --pretty=format:"%s"', function (err, stdout) {
             if (err) {
                 return cb(err);
             }
@@ -294,9 +294,9 @@
         'clean',
         'copy',
         'sass',
+        'header',
         'cssmin',
         'uglify',
-        'header'
     ],
     'building'));
 
@@ -309,9 +309,9 @@
         'clean',
         'copy',
         'sass',
+        'header',
         'uglify',
         'cssmin',
-        'header',
         'git-add',
         'git-commit',
         'git-tag',