mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-01-23 02:35:49 +00:00
17 lines
316 B
JavaScript
17 lines
316 B
JavaScript
import {cpSync} from 'node:fs';
|
|
|
|
cpSync('./css/columns', './dist-dev/columns', {
|
|
recursive: true,
|
|
});
|
|
|
|
cpSync('./css/themes', './dist-dev/themes', {
|
|
recursive: true,
|
|
});
|
|
|
|
cpSync('./css/columns', './dist/columns', {
|
|
recursive: true,
|
|
});
|
|
|
|
cpSync('./css/themes', './dist/themes', {
|
|
recursive: true,
|
|
});
|