From 21d674e22b5e3e626b114ef63671647c3f6f3f95 Mon Sep 17 00:00:00 2001 From: harttle Date: Thu, 28 Feb 2019 00:05:37 +0800 Subject: [PATCH] chore: fix benchmark npm script --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 4b6b318a0..6f4b1e98e 100644 --- a/package.json +++ b/package.json @@ -11,7 +11,7 @@ "integration": "mocha 'test/integration/**/*.ts'", "e2e": "npm run build && mocha 'test/e2e/**/*.ts'", "test": "npm run build && mocha 'test/**/*.ts'", - "benchmark": "ts-node --require tsconfig-paths/register benchmark", + "benchmark": "ts-node benchmark", "coverage-html": "nyc --reporter=html mocha 'test/{unit,integration}/**/*.ts'", "coverage-coveralls": "nyc mocha 'test/{unit,integration}/**/*.ts' && nyc report --reporter=text-lcov | coveralls", "build": "rollup -c rollup.config.ts && ls -lh dist",