Including empty .js file for individual customizations

This commit is contained in:
Thomas A. Reinert 2018-03-17 23:10:59 +01:00
parent c5a345a3d6
commit 033459b029
2 changed files with 5 additions and 1 deletions

View File

@ -186,7 +186,11 @@ gulp.task( 'scripts', function() {
// End - All BS4 stuff
paths.dev + '/js/skip-link-focus-fix.js'
paths.dev + '/js/skip-link-focus-fix.js',
// Adding currently empty javascript file to add on for your own themes´ customizations
// Please add any customizations to this .js file only!
paths.dev + '/js/custom-javascript.js'
];
gulp.src( scripts )
.pipe( concat( 'theme.min.js' ) )

View File