From 010905db0b39e3e0c8bf8e9a4fcc5faee574f477 Mon Sep 17 00:00:00 2001 From: Cheng Zhao Date: Mon, 28 Oct 2013 09:23:57 +0800 Subject: [PATCH] Fix the "'true' is not found" error. --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index a1acd046a..630384315 100644 --- a/package.json +++ b/package.json @@ -139,7 +139,7 @@ }, "private": true, "scripts": { - "preinstall": "true", - "test": "script/test" + "preinstall": "node -e 'process.exit(0)'", + "test": "node script/test" } }