-
Notifications
You must be signed in to change notification settings - Fork 1
/
copy_to_mobius.js
52 lines (43 loc) · 1.75 KB
/
copy_to_mobius.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
41
42
43
44
45
46
47
48
49
50
51
52
var fs = require('fs');
var path = require('path');
const MOBIUS_LOCATION = 'C:\\Users\\akibdpt\\Documents\\Angular\\mobius-parametric-modeller-dev-0-9'
function copyFileSync( source, target ) {
var targetFile = target;
// If target is a directory, a new file with the same name will be created
if ( fs.existsSync( target ) ) {
if ( fs.lstatSync( target ).isDirectory() ) {
targetFile = path.join( target, path.basename( source ) );
}
}
fs.writeFileSync(targetFile, fs.readFileSync(source));
}
function copyFolderRecursiveSync( source, target ) {
var files = [];
// Check if folder needs to be created or integrated
var targetFolder = path.join( target, path.basename( source ) );
if ( !fs.existsSync( targetFolder ) ) {
fs.mkdirSync( targetFolder );
}
// Copy
if ( fs.lstatSync( source ).isDirectory() ) {
files = fs.readdirSync( source );
files.forEach( function ( file ) {
var curSource = path.join( source, file );
if ( fs.lstatSync( curSource ).isDirectory() ) {
copyFolderRecursiveSync( curSource, targetFolder );
} else {
copyFileSync( curSource, targetFolder );
}
} );
}
}
const to = path.join(
MOBIUS_LOCATION,
'node_modules\\@design-automation\\mobius-inline-funcs'
);
fs.rmSync(path.join(to, 'build'), { recursive: true, force: true });
fs.rmSync(path.join(to, 'src'), { recursive: true, force: true });
fs.rmSync(path.join(to, 'typedoc-json'), { recursive: true, force: true });
copyFolderRecursiveSync(path.join(process.cwd(),'build'), to)
copyFolderRecursiveSync(path.join(process.cwd(),'src'), to)
copyFolderRecursiveSync(path.join(process.cwd(),'typedoc-json'), to)