2015-04-04 01:00:23 +00:00
|
|
|
/**
|
2015-10-20 16:53:54 +00:00
|
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This source code is licensed under the BSD-style license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
2015-04-04 01:00:23 +00:00
|
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
|
2016-10-14 18:11:35 +00:00
|
|
|
// gracefulify() has to be called before anything else runs
|
|
|
|
require('graceful-fs').gracefulify(require('fs'));
|
|
|
|
|
2016-05-21 13:53:32 +00:00
|
|
|
// This file must be able to run in node 0.12 without babel so we can show that
|
|
|
|
// it is not supported. This is why the rest of the cli code is in `cliEntry.js`.
|
|
|
|
require('./server/checkNodeVersion')();
|
|
|
|
|
2017-01-06 14:02:36 +00:00
|
|
|
require('../setupBabel')();
|
2015-10-22 17:11:28 +00:00
|
|
|
|
2016-05-21 13:53:32 +00:00
|
|
|
var cliEntry = require('./cliEntry');
|
2015-04-04 01:00:23 +00:00
|
|
|
|
2015-04-07 19:33:41 +00:00
|
|
|
if (require.main === module) {
|
2016-05-21 13:53:32 +00:00
|
|
|
cliEntry.run();
|
2015-04-07 19:33:41 +00:00
|
|
|
}
|
|
|
|
|
2016-05-21 13:53:32 +00:00
|
|
|
module.exports = cliEntry;
|