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

@ -25,6 +25,7 @@
"pino-pretty": "^10.0.0",
"prettier": "^2.8.8",
"ts-node": "^10.9.1",
"tsc-watch": "^6.0.4",
"typedoc": "^0.24.7",
"typescript": "^5.0.4"
},
@ -34,7 +35,7 @@
"fix:lint": "eslint src --ext .ts --fix",
"fmt": "prettier \"src/**/*.ts\" --write",
"lint": "eslint src --ext .ts && prettier \"src/**/*.ts\" --list-different",
"watch:build": "tsc -p tsconfig.json -w",
"worker": "NODE_ENV=development yarn cli worker"
"worker": "NODE_ENV=development yarn cli worker",
"dev": "tsc-watch --build --noClear "
}
}