mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-02-13 22:00:25 -05:00
20 lines
585 B
TypeScript
20 lines
585 B
TypeScript
import { cpSync, mkdirSync, rmSync } from 'node:fs';
|
|
|
|
import { resolve } from 'node:path';
|
|
|
|
const browserScriptDist = resolve(
|
|
__dirname,
|
|
'../../tools/client-plugins/browser-scripts/dist'
|
|
);
|
|
|
|
const destJsDir = resolve(__dirname, '../static/js');
|
|
|
|
// Everything is done synchronously to keep the script simple. There's no
|
|
// performance benefit to doing this asynchronously since it's already so fast.
|
|
rmSync(destJsDir, { recursive: true, force: true });
|
|
mkdirSync(destJsDir, { recursive: true });
|
|
|
|
cpSync(resolve(browserScriptDist, 'artifacts'), destJsDir, {
|
|
recursive: true
|
|
});
|