startbootstrap-sb-admin
Version:
A free admin dashboard template based on Bootstrap 4, created by Start Bootstrap.
11 lines (9 loc) • 350 B
JavaScript
;
const fs = require('fs');
const upath = require('upath');
const sh = require('shelljs');
module.exports = function renderAssets() {
const sourcePath = upath.resolve(upath.dirname(__filename), '../src/assets');
const destPath = upath.resolve(upath.dirname(__filename), '../dist/.');
sh.cp('-R', sourcePath, destPath)
};