From 12624f3a98d8fc53531ed21ea2d7e9cd64913712 Mon Sep 17 00:00:00 2001 From: Feross Aboukhadijeh Date: Thu, 8 Feb 2018 16:12:07 -0800 Subject: [PATCH] make built file executable --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index af9a566..695641c 100644 --- a/package.json +++ b/package.json @@ -57,7 +57,7 @@ "url": "git://github.com/feross/thanks.git" }, "scripts": { - "build": "babel src/cmd.js > dist/cmd.js", + "build": "babel src/cmd.js > dist/cmd.js && chmod +x ./dist/cmd.js", "test": "standard && npm run build && ./dist/cmd.js --no-open", "prepublish": "npm run build" }