exclude gulpfile.js from Travis checks
This commit is contained in:
parent
d2f0c5c004
commit
5a8cf9a00f
3
.jscsrc
3
.jscsrc
|
@ -7,6 +7,7 @@
|
||||||
"src/**/*.js",
|
"src/**/*.js",
|
||||||
"js/core.js",
|
"js/core.js",
|
||||||
"js/popper.js",
|
"js/popper.js",
|
||||||
"js/theme.js"
|
"js/theme.js",
|
||||||
|
"gulpfile.js"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
|
@ -172,7 +172,8 @@ gulp.task( 'browser-sync', function() {
|
||||||
// Run:
|
// Run:
|
||||||
// gulp watch-bs
|
// gulp watch-bs
|
||||||
// Starts watcher with browser-sync. Browser-sync reloads page automatically on your browser
|
// Starts watcher with browser-sync. Browser-sync reloads page automatically on your browser
|
||||||
gulp.task( 'watch-bs', ['browser-sync', 'watch', 'scripts'], function() { } );
|
gulp.task( 'watch-bs', ['browser-sync', 'watch', 'scripts'], function() {
|
||||||
|
} );
|
||||||
|
|
||||||
// Run:
|
// Run:
|
||||||
// gulp scripts.
|
// gulp scripts.
|
||||||
|
|
Reference in New Issue