Skip to content

Commit

Permalink
fix: windows clean script not working properly
Browse files Browse the repository at this point in the history
  • Loading branch information
lukazbaum committed May 14, 2024
1 parent 4bd1116 commit 745d6a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "A comprehensive TypeScript command handler for Discord.js, featuring slash commands, prefix commands, message events, automatic intents, and more.",
"main": "src/index.ts",
"scripts": {
"clean-windows": "del -f \"dist*\"",
"clean-windows": "rd /s /q dist",
"clean-linux": "rm -rf dist",
"compile": "npm run clean-windows && tsc",
"start": "node dist/index.js",
Expand Down

0 comments on commit 745d6a1

Please sign in to comment.