diff --git a/packages/round/package.json b/packages/round/package.json index 4d3766e4..bd67071d 100644 --- a/packages/round/package.json +++ b/packages/round/package.json @@ -4,22 +4,19 @@ "description": "Rounded Corner Bibata 🏳️‍🌈", "main": "index.js", "scripts": { + "clean": "rm -rf ./src/svg/Bibata-* ./bitmaps", "dev": "nodemon src/index.ts", "dev:debug": "nodemon --inspect src/index.ts", - "build": "npx tsc --build", + "build": "yarn clean && npx tsc --build", "render": "yarn build && node dist/index.js" }, "author": "Kaiz Khatri", "license": "GPL-3.0", "private": true, "devDependencies": { - "@types/rimraf": "^3.0.0", "nodemon": "^2.0.4", "ts-node": "^8.10.2", "tslint": "^6.1.3", "typescript": "^3.9.7" - }, - "dependencies": { - "rimraf": "^3.0.2" } }