From 35baf39d1a8e09075245020e1e2fcba18ac01cae Mon Sep 17 00:00:00 2001 From: wbt Date: Sat, 22 Jan 2022 23:07:05 -0500 Subject: [PATCH] Relative ref to bin file not needed; npm looks there by default (#80) --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 1c06106..eb51cfc 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": {