#!/usr/bin/env node // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT license. // Copyright (c) 2015-present, Facebook, Inc. // This source code is licensed under the MIT license found in the // LICENSE file in the root directory of this source tree. Object.defineProperty(exports, "__esModule", { value: true }); const commander = require("commander"); const debugger_1 = require("./debugger"); /* global process */ commander .option("-h, --host ", "The hostname where the packager is running.") .option("-p, --port ", "The port where the packager is running.") .parse(process.argv); (0, debugger_1.run)(commander.host, commander.port); //# sourceMappingURL=cli.js.map