Skip to content

Commit 01d75a7

Browse files
author
idleberg
committed
use const
1 parent e3d7860 commit 01d75a7

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

gulpfile.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
// Dependencies
2-
var gulp = require('gulp');
3-
var debug = require('gulp-debug');
4-
var jshint = require('gulp-jshint');
5-
var jsonlint = require('gulp-jsonlint');
2+
const gulp = require('gulp');
3+
const debug = require('gulp-debug');
4+
const jshint = require('gulp-jshint');
5+
const jsonlint = require('gulp-jsonlint');
66

77
// Exclude node_modules
8-
var self = '!node_modules/**/*';
8+
const self = '!node_modules/**/*';
99

1010
// Lint JavaScript files
1111
gulp.task('jshint', (done) => {

0 commit comments

Comments
 (0)