From 5a7ae3e1181af0854ffd00a96f671cee0c8fa1a1 Mon Sep 17 00:00:00 2001 From: Shishir H Date: Fri, 2 Oct 2015 14:41:56 -0700 Subject: [PATCH] add default gulp task and use https in cli --- cli/script/command-parser.ts | 2 +- gulp/default.js | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 gulp/default.js diff --git a/cli/script/command-parser.ts b/cli/script/command-parser.ts index fffb54c8..38d23c41 100644 --- a/cli/script/command-parser.ts +++ b/cli/script/command-parser.ts @@ -3,7 +3,7 @@ import * as cli from "../definitions/cli"; import * as semver from "semver"; const USAGE_PREFIX = "Usage: code-push"; -const CODE_PUSH_URL = "http://codepush.azurewebsites.net"; +const CODE_PUSH_URL = "https://codepush.azurewebsites.net"; // Command categories are: access-key, app, deploy, deployment, deployment-key, login, logout, register var isValidCommandCategory = false; diff --git a/gulp/default.js b/gulp/default.js new file mode 100644 index 00000000..77f87f0e --- /dev/null +++ b/gulp/default.js @@ -0,0 +1,5 @@ +"use strict"; + +var gulp = require("gulp"); + +gulp.task("default", ["build"]); \ No newline at end of file