mirror of
https://github.com/LukeHagar/sveltekit-electron-adapter.git
synced 2025-12-07 04:21:35 +00:00
[Release] v0.2.0
This commit is contained in:
16
scripts/rmdist.ts
Normal file
16
scripts/rmdist.ts
Normal file
@@ -0,0 +1,16 @@
|
||||
/**
|
||||
* 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);
|
||||
Reference in New Issue
Block a user