From bdfceaad061d721bb5c2d1d783fb484e2e4a8f0f Mon Sep 17 00:00:00 2001 From: Tim Schaub Date: Fri, 8 Aug 2014 11:08:37 -0700 Subject: [PATCH] Run closure-util install script after install This needs to be run whenever our closure-util.json config changes. It is harmless to run multiple times. --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 7c69996d6e..8c3562a0b5 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,8 @@ "version": "3.0.0-beta", "description": "Mapping library", "scripts": { - "postinstall": "node tasks/parse-examples.js", + "install": "node tasks/parse-examples.js", + "postinstall": "node ./node_modules/closure-util/install.js", "start": "node tasks/serve.js", "test": "node tasks/test.js" },