From 79b4fa111a86c8ae70ad56217ab08315b8357270 Mon Sep 17 00:00:00 2001 From: Vjacheslav Trushkin Date: Mon, 21 Dec 2020 11:55:16 +0200 Subject: [PATCH] Clean up scripts in core --- packages/core/package.json | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/packages/core/package.json b/packages/core/package.json index a194c48..bcd31cb 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -13,12 +13,13 @@ }, "scripts": { "clean": "rm -rf lib compiled-tests", - "lint": "npx eslint {src,tests}/**/*.ts", + "lint": "eslint {src,tests}/**/*.ts", "prebuild": "npm run lint", - "build": "npx tsc -b", + "build": "tsc -b", + "build:src": "tsc --project src/tsconfig.json", "prewatch": "npm run lint", - "watch": "npx tsc -b -w", - "test": "npx mocha tests-compiled/*/*-test.js", + "watch": "tsc -b -w", + "test": "mocha tests-compiled/*/*-test.js", "pretest": "npm run build" }, "devDependencies": {