🧹 Old flles cleanup script

This commit is contained in:
ful1e5 2020-08-16 18:44:15 +05:30
parent 8b1d61074b
commit 2e1fec619e

View file

@ -4,22 +4,19 @@
"description": "Rounded Corner Bibata 🏳️‍🌈", "description": "Rounded Corner Bibata 🏳️‍🌈",
"main": "index.js", "main": "index.js",
"scripts": { "scripts": {
"clean": "rm -rf ./src/svg/Bibata-* ./bitmaps",
"dev": "nodemon src/index.ts", "dev": "nodemon src/index.ts",
"dev:debug": "nodemon --inspect 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" "render": "yarn build && node dist/index.js"
}, },
"author": "Kaiz Khatri", "author": "Kaiz Khatri",
"license": "GPL-3.0", "license": "GPL-3.0",
"private": true, "private": true,
"devDependencies": { "devDependencies": {
"@types/rimraf": "^3.0.0",
"nodemon": "^2.0.4", "nodemon": "^2.0.4",
"ts-node": "^8.10.2", "ts-node": "^8.10.2",
"tslint": "^6.1.3", "tslint": "^6.1.3",
"typescript": "^3.9.7" "typescript": "^3.9.7"
},
"dependencies": {
"rimraf": "^3.0.2"
} }
} }