From 3ea7280025d867316a15c6054aa868b63a967aa9 Mon Sep 17 00:00:00 2001 From: Konstantinos Paparas Date: Wed, 10 Jan 2024 17:43:39 +0100 Subject: [PATCH] chore: fix pre-publish missing command --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 50f2ee2..586a871 100644 --- a/package.json +++ b/package.json @@ -16,7 +16,7 @@ "lint": "eslint .", "lint:fix": "eslint . --fix", "build": "tsc --project ./tsconfig.build.json", - "prepublishOnly": "nr build", + "prepublishOnly": "pnpm run build", "test": "mocha --require ts-node/register/transpile-only \"./tests/**/*.ts\"", "test:debug": "mocha --require ts-node/register/transpile-only \"./tests/**/*.ts\"", "test:coverage": "nyc mocha --require ts-node/register/transpile-only \"./tests/**/*.ts\" --timeout 60000",