2020-04-07 00:19:58 +02:00
|
|
|
'use strict';
|
|
|
|
const fs = require('fs');
|
|
|
|
const packageJSON = require('../package.json');
|
2021-03-30 01:45:48 +02:00
|
|
|
const upath = require('upath');
|
2020-04-07 00:19:58 +02:00
|
|
|
const sh = require('shelljs');
|
|
|
|
|
|
|
|
module.exports = function renderScripts() {
|
2021-03-30 01:45:48 +02:00
|
|
|
|
|
|
|
const sourcePath = upath.resolve(upath.dirname(__filename), '../src/js');
|
|
|
|
const destPath = upath.resolve(upath.dirname(__filename), '../dist/.');
|
|
|
|
|
|
|
|
sh.cp('-R', sourcePath, destPath)
|
|
|
|
|
|
|
|
const sourcePathScriptsJS = upath.resolve(upath.dirname(__filename), '../src/js/scripts.js');
|
|
|
|
const destPathScriptsJS = upath.resolve(upath.dirname(__filename), '../dist/js/scripts.js');
|
2020-04-07 00:19:58 +02:00
|
|
|
|
|
|
|
const copyright = `/*!
|
2021-03-31 01:03:24 +02:00
|
|
|
* 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)
|
|
|
|
*/
|
|
|
|
`
|
2021-03-30 01:45:48 +02:00
|
|
|
const scriptsJS = fs.readFileSync(sourcePathScriptsJS);
|
2020-04-07 00:19:58 +02:00
|
|
|
|
2021-03-30 01:45:48 +02:00
|
|
|
fs.writeFileSync(destPathScriptsJS, copyright + scriptsJS);
|
2020-04-07 00:19:58 +02:00
|
|
|
};
|