Skip to content

Commit 4545089

Browse files
author
Walker Leite
committed
fix(gulp): fix lint errors
1 parent 215cb1e commit 4545089

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: template/gulp-tasks/clear-cache.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
export default function (path) {
1+
export default function(path) {
22
const paths = Object.keys(require.cache);
33
paths.forEach((p) => {
44
if (p.includes(path)) {

Diff for: template/gulp-tasks/serve.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import gutil from 'gulp-util';
33
import connect from 'gulp-connect';
44
import historyApiFallback from 'connect-history-api-fallback';
55
import clearCache from './clear-cache';
6-
import { dirs } from './config';
6+
import {dirs} from './config';
77

88
let server = require('../server/server').default;
99

0 commit comments

Comments
 (0)