From a2dc09250288380f142ca245975ad245931f25a7 Mon Sep 17 00:00:00 2001 From: Arne Hassel Date: Fri, 31 May 2019 08:42:56 +0200 Subject: [PATCH 1/2] Makes it a bit easier for developers --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 674760111..973170442 100644 --- a/package.json +++ b/package.json @@ -13,7 +13,8 @@ "postversion": "git push origin master --follow-tags", "prepublishOnly": "npm run build", "standard": "standard src", - "test": "npm run standard" + "test": "npm run standard", + "watch": "babel --no-babelrc src -d lib -w" }, "repository": { "type": "git", From 1e17bd7ba4ce421f4274623f50db9fa705b39fe7 Mon Sep 17 00:00:00 2001 From: Vincent Date: Mon, 3 Jun 2019 09:59:15 +0200 Subject: [PATCH 2/2] Use long forms of CLI arguments This allows developers to understand what it is doing without having to look up the documentation. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 973170442..cefbc4df5 100644 --- a/package.json +++ b/package.json @@ -14,7 +14,7 @@ "prepublishOnly": "npm run build", "standard": "standard src", "test": "npm run standard", - "watch": "babel --no-babelrc src -d lib -w" + "watch": "babel --no-babelrc src --out-dir lib --watch" }, "repository": { "type": "git",