From 3c633203a8cf9c8e6afc20a14f5493a709274bbf Mon Sep 17 00:00:00 2001 From: StevanFreeborn Date: Fri, 27 Jan 2023 00:04:22 -0600 Subject: [PATCH] fix: build script in package.json --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index c03d5c1..3ea7f89 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { - "build": "npm tests && tsc", + "build": "npm run tests && tsc", "tests": "mocha -R progress -r ts-node/register ./tests/**/*.spec.ts", "test": "mocha -r ts-node/register", "test-coverage": "nyc npm run tests"