From 90fe0c0d3bfcb4840febceaf24484d14f1e0f146 Mon Sep 17 00:00:00 2001 From: Alen Yohannan <66544823+AlenSaito1@users.noreply.github.com> Date: Mon, 6 Dec 2021 18:21:30 +0530 Subject: [PATCH] [FIX] Use `prepack` instead of prepare (#976) * Fix errors with Compilation There were some erros which prevented the code to compile. This commit fixes that * chore(): use `prepack` instead of `prepare` --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 45a9f77..db772af 100644 --- a/package.json +++ b/package.json @@ -17,7 +17,7 @@ ], "scripts": { "test": "mocha --timeout 240000 -r ts-node/register src/Tests/Tests.*.ts", - "prepare": "tsc", + "prepack": "tsc", "lint": "eslint '*/*.ts' --quiet --fix", "build:all": "tsc && typedoc", "build:docs": "typedoc",