mirror of
https://github.com/mathuo/dockview
synced 2025-03-12 08:52:05 +00:00
9 lines
211 B
JavaScript
9 lines
211 B
JavaScript
const fs = require('fs-extra');
|
|
const path = require('path');
|
|
|
|
const output = path.join(__dirname, '../../../build');
|
|
|
|
const docsDir = path.join(__dirname, '../build');
|
|
|
|
fs.copySync(docsDir, path.join(output));
|