From bf2b6150df597a2567a61f902633ccf25d2fb1bf Mon Sep 17 00:00:00 2001 From: Dale Lotts Date: Tue, 14 Mar 2017 15:10:27 -0500 Subject: [PATCH] fix(package.json): Fix failing `npm run api` command (#3462) api script was running the incorrect gulp command. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 9c3e7b764237..0e7ead41f318 100644 --- a/package.json +++ b/package.json @@ -17,7 +17,7 @@ "deploy": "firebase deploy", "webdriver-manager": "webdriver-manager", "docs": "gulp docs", - "api": "gulp api" + "api": "gulp api-docs" }, "version": "2.0.0-beta.2", "license": "MIT",