UNPKG

636 BJavaScriptView Raw
1#!/usr/bin/env node
2
3/**
4 * Copyright (c) Facebook, Inc. and its affiliates.
5 *
6 * This source code is licensed under the MIT license found in the
7 * LICENSE file in the root directory of this source tree.
8 *
9 * @flow
10 */
11
12const electron = require('electron');
13const spawn = require('cross-spawn');
14const argv = process.argv.slice(2);
15const pkg = require('./package.json');
16const updateNotifier = require('update-notifier');
17
18// notify if there's an update
19updateNotifier({pkg}).notify({defer: false});
20
21const result = spawn.sync(electron, [require.resolve('./app')].concat(argv), {
22 stdio: 'ignore',
23});
24
25process.exit(result.status);