From 47c65244131400c36113b115f5858850bb9357eb Mon Sep 17 00:00:00 2001 From: widal001 Date: Tue, 14 Jan 2025 09:28:35 -0500 Subject: [PATCH] fix: Failing `npm run prepare:deps` --- examples/custom-api/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/custom-api/package.json b/examples/custom-api/package.json index e6de156..a21761b 100644 --- a/examples/custom-api/package.json +++ b/examples/custom-api/package.json @@ -3,7 +3,7 @@ "version": "0.1.0", "type": "module", "scripts": { - "prepare:deps": "cd ../../specs && npm run build && npm pack && cd ../examples/custom-api", + "prepare:deps": "cd ../../specs && npm install && npm run build && npm pack && cd ../examples/custom-api", "typespec": "tsp compile src/main.tsp", "lint": "eslint . --fix", "format": "prettier --write . && tsp format lib",