-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathcopy.js
40 lines (30 loc) · 974 Bytes
/
copy.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
'use strict';
/*
* Tasks in this file handle copying files or directories to public/
*/
const { ensureDir, copy } = require('fs-extra');
const CONFIG = require('../_config');
async function copyDist () {
let sourcePath = `${CONFIG.root}/${CONFIG.distDir}`;
let destPath = `${CONFIG.publicDir}/dist`;
console.log(`Copying compiled assets to ${destPath}`);
await ensureDir(`${destPath}`);
await copy(sourcePath, destPath);
}//copyDist()
async function copyDocs () {
console.log('Copying static files for docs');
// Directories to copy from docs/ to public/
let dirs = [
'files',
'images',
'vendor',
];
await ensureDir(`${CONFIG.publicDir}`);
dirs.forEach(srcDir => {
let sourcePath = `${CONFIG.docsDir}/${srcDir}`;
let destPath = `${CONFIG.publicDir}/${srcDir}`;
copy(sourcePath, destPath);
});
}//copyDocs();
exports.copyDist = copyDist;
exports.copyDocs = copyDocs;