mirror of
https://github.com/LukeHagar/sveltekit-electron-adapter.git
synced 2025-12-06 20:57:46 +00:00
17 lines
382 B
TypeScript
17 lines
382 B
TypeScript
/**
|
|
* Delete dist folder
|
|
* =====================
|
|
*
|
|
* @contributors: Patryk Rzucidło [@ptkdev] <support@ptkdev.io> (https://ptk.dev)
|
|
* Alì Shadman [@AliShadman95] (https://github.com/AliShadman95)
|
|
*
|
|
* @license: MIT License
|
|
*
|
|
*/
|
|
import * as shell from "shelljs";
|
|
declare const __dirname: string;
|
|
|
|
const path = `${__dirname}/../dist`;
|
|
|
|
shell.rm("-Rf", path);
|