Rudimentary build cache remover.

This commit is contained in:
Tuan Cao 2022-04-29 15:43:30 +07:00
parent 233e5ba4ed
commit 561dc104a3

View File

@ -3,8 +3,8 @@
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"dev": "rm -rf graph-data.json && next dev",
"build": "rm -rf graph-data.json && next build",
"start": "next start",
"deploy": "yarn build && git add . && git commit -m '...' && git push"
},