From d128dd1846a65c305d078c8243c66e981a8b116d Mon Sep 17 00:00:00 2001 From: WBT Date: Tue, 14 Dec 2021 12:37:19 -0500 Subject: [PATCH] Relative ref to bin file not needed; npm looks there by default --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 0bd6ac7..d340a5e 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,7 @@ "pretest": "npm run lint && npm run build", "test": "nyc mocha test/*.test.js", "report": "nyc report --reporter=lcov", - "build": "./node_modules/.bin/rimraf dist && babel *.js -d ./dist", + "build": "rimraf dist && babel *.js -d ./dist", "prepublishOnly": "npm run build" }, "repository": {