Skip to content

Commit

Permalink
spacing for header in scripts render
Browse files Browse the repository at this point in the history
  • Loading branch information
davidtmiller committed Mar 30, 2021
1 parent 430b843 commit 5268b3d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions dist/js/scripts.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
/*!
* Start Bootstrap - Agency v6.0.4 (https://startbootstrap.com/theme/agency)
* Copyright 2013-2021 Start Bootstrap
* Licensed under MIT (https://github.com/StartBootstrap/startbootstrap-agency/blob/master/LICENSE)
*/
(function ($) {
* Start Bootstrap - Agency v6.0.4 (https://startbootstrap.com/theme/agency)
* Copyright 2013-2021 Start Bootstrap
* Licensed under MIT (https://github.com/StartBootstrap/startbootstrap-agency/blob/master/LICENSE)
*/
(function ($) {
"use strict"; // Start of use strict

// Smooth scrolling using anime.js
Expand Down
10 changes: 5 additions & 5 deletions scripts/render-scripts.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ module.exports = function renderScripts() {
const destPathScriptsJS = upath.resolve(upath.dirname(__filename), '../dist/js/scripts.js');

const copyright = `/*!
* Start Bootstrap - ${packageJSON.title} v${packageJSON.version} (${packageJSON.homepage})
* Copyright 2013-${new Date().getFullYear()} ${packageJSON.author}
* Licensed under ${packageJSON.license} (https://github.com/StartBootstrap/${packageJSON.name}/blob/master/LICENSE)
*/
`
* Start Bootstrap - ${packageJSON.title} v${packageJSON.version} (${packageJSON.homepage})
* Copyright 2013-${new Date().getFullYear()} ${packageJSON.author}
* Licensed under ${packageJSON.license} (https://github.com/StartBootstrap/${packageJSON.name}/blob/master/LICENSE)
*/
`
const scriptsJS = fs.readFileSync(sourcePathScriptsJS);

fs.writeFileSync(destPathScriptsJS, copyright + scriptsJS);
Expand Down

0 comments on commit 5268b3d

Please sign in to comment.