From 144045b335090ac3497fb4b0f52363071f2cf888 Mon Sep 17 00:00:00 2001 From: Surbhi Shah Date: Wed, 5 Aug 2020 17:13:37 -0700 Subject: [PATCH 1/2] Adding scripts and grunt-cli --- package.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 02e79545..8e8cb603 100644 --- a/package.json +++ b/package.json @@ -24,6 +24,7 @@ }, "devDependencies": { "grunt": "^0.4.1", + "grunt-cli": "^1.3.2", "grunt-concurrent": "^0.5.0", "grunt-contrib-clean": "~0.6.0", "grunt-contrib-concat": "^0.4.0", @@ -48,6 +49,7 @@ "node": ">=0.10.0" }, "scripts": { - "test": "grunt test" + "test": "grunt test", + "dist": "grunt build", } } From a54c7171cc233315003ded548ef2660786914c2c Mon Sep 17 00:00:00 2001 From: Daniel Kempner Date: Wed, 5 Aug 2020 17:24:58 -0700 Subject: [PATCH 2/2] no trailing comma in json --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 8e8cb603..7acaf1eb 100644 --- a/package.json +++ b/package.json @@ -50,6 +50,6 @@ }, "scripts": { "test": "grunt test", - "dist": "grunt build", + "dist": "grunt build" } }