Skip to content

Commit

Permalink
Reverted commit D4036668
Browse files Browse the repository at this point in the history
Reviewed By: cpojer

Differential Revision: D4036668

fbshipit-source-id: 5b75709526c3e87774e0943a76d55cd729c6143d
  • Loading branch information
bestander authored and Facebook Github Bot committed Oct 18, 2016
1 parent ebc8126 commit 8acf1a0
Showing 1 changed file with 3 additions and 11 deletions.
14 changes: 3 additions & 11 deletions packager/react-packager/index.js
Expand Up @@ -5,8 +5,6 @@
* 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.
*
* @flow
*/
'use strict';

Expand All @@ -17,15 +15,9 @@ require('./src/node-haste/fastpath').replace();
var debug = require('debug');
var Activity = require('./src/Activity');

type Options = {
nonPersistent: boolean,
verbose: boolean,
}

exports.createServer = createServer;
exports.Activity = Activity;

exports.getOrderedDependencyPaths = function(options: Options, bundleOptions: mixed) {
exports.getOrderedDependencyPaths = function(options, bundleOptions) {
var server = createNonPersistentServer(options);
return server.getOrderedDependencyPaths(bundleOptions)
.then(function(paths) {
Expand All @@ -48,7 +40,7 @@ function enableDebug() {
debug.enable(debugPattern);
}

function createServer(options: Options) {
function createServer(options) {
// the debug module is configured globally, we need to enable debugging
// *before* requiring any packages that use `debug` for logging
if (options.verbose) {
Expand All @@ -59,7 +51,7 @@ function createServer(options: Options) {
return new Server(omit(options, ['verbose']));
}

function createNonPersistentServer(options: Options) {
function createNonPersistentServer(options) {
Activity.disable();
// Don't start the filewatcher or the cache.
if (options.nonPersistent == null) {
Expand Down

0 comments on commit 8acf1a0

Please sign in to comment.