mirror of
https://github.com/LukeHagar/skeleton.git
synced 2025-12-07 20:57:44 +00:00
* svelte-migrate + script updates * tweaks * First test done * Stragglers * Add Prettier config to post-build gen * Added keywords for display on npmjs * Back out the a11y fixes * Git gud * Updated package lock file * Fix the NPM publish script path * Resolve package script command --------- Co-authored-by: endigo9740 <gundamx9740@gmail.com>
11 lines
246 B
JavaScript
11 lines
246 B
JavaScript
#!/usr/bin/env node
|
|
|
|
import { rmSync } from 'fs';
|
|
|
|
try {
|
|
// We'll delete the .temp directory to force the regeneration of all of the TW Classes
|
|
rmSync('.temp', { recursive: true });
|
|
} catch {
|
|
// Directory doesn't exist, don't worry about it
|
|
}
|