npm run dev:metamigo now builds+watches all metamigo things!!

This commit is contained in:
Abel Luck 2023-06-07 08:14:29 +00:00
parent bdad5f551c
commit 754131fbe1
25 changed files with 195 additions and 103 deletions

View file

@ -2,7 +2,7 @@
"name": "@digiresilience/metamigo-api",
"version": "0.2.0",
"type": "module",
"main": "build/main/index.js",
"main": "build/main/main.js",
"author": "Abel Luck <abel@guardianproject.info>",
"license": "AGPL-3.0-or-later",
"dependencies": {
@ -55,6 +55,7 @@
"pg-monitor": "^2.0.0",
"pino-pretty": "^10.0.0",
"ts-node": "^10.9.1",
"tsc-watch": "^6.0.4",
"tsconfig-link": "*",
"typedoc": "^0.24.7",
"typescript": "^5.0.4"
@ -77,6 +78,7 @@
"serve:prod": "NODE_ENV=production npm run cli server",
"worker": "NODE_ENV=development npm run cli worker",
"worker:prod": "NODE_ENV=production npm run cli worker",
"watch:build": "tsc -p tsconfig.json -w"
"watch:build": "tsc -p tsconfig.json -w",
"dev": "tsc-watch --build --noClear --onSuccess \"node ./build/main/main.js\""
}
}