Skip to content

Commit c36f879

Browse files
authored
Update gulpfile.js
1 parent 0134000 commit c36f879

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

examples/simple-player/gulpfile.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,14 @@ gulp.task('lint', () => {
1313
const tslint = require('gulp-tslint');
1414
// Built-in rules are at
1515
// https://github.com/palantir/tslint#supported-rules
16-
const tslintConfig = require('./tslint.json');
1716
return gulp
1817
.src([
1918
'javascripts/**/*.ts'
2019
])
2120
.pipe(
2221
tslint({
2322
tslint: require('tslint').default,
24-
configuration: tslintConfig,
23+
configuration: './tslint.json',
2524
formatter: 'prose'
2625
})
2726
)
@@ -72,4 +71,4 @@ gulp.task('watch', ['build'], function () {
7271
gulp.watch([
7372
'javascripts/**/*.ts'
7473
], ['build']);
75-
});
74+
});

0 commit comments

Comments
 (0)