From e48e92547aea02c55e2fbd12dd625ca5d35f8a74 Mon Sep 17 00:00:00 2001 From: Feross Aboukhadijeh Date: Thu, 8 Feb 2018 16:11:34 -0800 Subject: [PATCH] Fix test command --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index fb6920f..af9a566 100644 --- a/package.json +++ b/package.json @@ -58,7 +58,7 @@ }, "scripts": { "build": "babel src/cmd.js > dist/cmd.js", - "test": "standard && ./cmd.js --no-open", + "test": "standard && npm run build && ./dist/cmd.js --no-open", "prepublish": "npm run build" } }