feat(content): add dev command

This commit is contained in:
Kim, Jimin 2025-01-21 17:15:10 +09:00
parent 829ef6d0bb
commit 7d55c2c738
Signed by: pomp
GPG key ID: 2B516173EDD492EB

View file

@ -3,6 +3,7 @@
"version": "0.0.0", "version": "0.0.0",
"type": "module", "type": "module",
"scripts": { "scripts": {
"dev": "nodemon -e md --watch markdown --exec pnpm build",
"build": "rm -rf dist build && tsup && node build/index.js", "build": "rm -rf dist build && tsup && node build/index.js",
"lint": "eslint .", "lint": "eslint .",
"i_am_sure_i_want_to_nuke_gitignored_files": "rm -rf .turbo build dist node_modules" "i_am_sure_i_want_to_nuke_gitignored_files": "rm -rf .turbo build dist node_modules"
@ -47,5 +48,8 @@
"tsup": "^8.0.2", "tsup": "^8.0.2",
"typescript": "^5.3.3", "typescript": "^5.3.3",
"unified": "^11.0.4" "unified": "^11.0.4"
},
"devDependencies": {
"nodemon": "^3.1.9"
} }
} }