blog menu page & blog article page
This commit is contained in:
17
node_modules/gulp-rev-all/gulpfile.js
generated
vendored
Normal file
17
node_modules/gulp-rev-all/gulpfile.js
generated
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
/* jshint node:true */
|
||||
|
||||
'use strict';
|
||||
|
||||
var gulp = require('gulp');
|
||||
var jshint = require('gulp-jshint');
|
||||
var mocha = require('gulp-mocha');
|
||||
|
||||
gulp.task('lint', function() {
|
||||
return gulp
|
||||
.src('test.js')
|
||||
.pipe(jshint())
|
||||
.pipe(jshint.reporter('default'))
|
||||
.pipe(mocha());
|
||||
});
|
||||
|
||||
gulp.task('default', ['lint']);
|
||||
Reference in New Issue
Block a user