From 495e31258ba0c927e25d1b99301037f308727ce4 Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Tue, 19 Jun 2018 08:24:06 -0500 Subject: [PATCH] Grunt not installing correctly Grunt is somehow not installed correctly, causing setup and installation (npm install) to fail. This changes the behavior to be identical to how library-webservices-status installs grunt. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 11ff82b..1676252 100755 --- a/package.json +++ b/package.json @@ -6,7 +6,7 @@ "repository": "https://github.com/TAMULib/ProjectManagementUI.git", "license": "MIT", "scripts": { - "prestart": "npm install -g grunt-cli", + "postinstall": "grunt", "pretest": "npm install", "test": "karma start karma.conf.js", "test-single-run": "karma start karma.conf.js --single-run",