fix: use rimraf for clear cmd

This commit is contained in:
2026-01-10 10:10:34 -03:00
parent 7bb7d6abdb
commit fd16528c07
2 changed files with 125 additions and 2 deletions
+3 -2
View File
@@ -8,7 +8,7 @@
"start": "node dist/index.js",
"dev": "tsx watch src/index.ts",
"watch": "tsc --watch",
"clean": "rm -rf dist",
"clean": "rimraf dist",
"build:clean": "npm run clean && npm run build",
"lint": "eslint",
"format": "prettier --check './src/**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc",
@@ -28,6 +28,7 @@
"eslint": "^9.39.2",
"globals": "^17.0.0",
"jiti": "^2.6.1",
"rimraf": "^6.1.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.52.0"
@@ -38,4 +39,4 @@
"dotenv": "^17.2.3",
"prettier": "^3.7.4"
}
}
}