From fc1549f9e72961b511178338bacbb1a8944baef0 Mon Sep 17 00:00:00 2001 From: WBT Date: Mon, 10 Jan 2022 13:52:06 -0500 Subject: [PATCH] Simplify path so that e.g. 'npm run build' can find it more easily What was previously explicit is the default, and gets past the error. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index b5b09adff..00e57978c 100644 --- a/package.json +++ b/package.json @@ -61,7 +61,7 @@ "pretest": "npm run lint", "test": "nyc --reporter=text --reporter lcov npm run test:mocha", "test:mocha": "mocha test/*.test.js test/**/*.test.js --exit", - "build": "./node_modules/.bin/rimraf dist && babel lib -d dist", + "build": "rimraf dist && babel lib -d dist", "prepublishOnly": "npm run build" }, "engines": {