Skip to content

Commit

Permalink
Revert "Fix port detection lag on OS X with Firewall enabled (#319)"
Browse files Browse the repository at this point in the history
The problem has since been fixed upstream.

This reverts commit f7011e0.
  • Loading branch information
gaearon committed Aug 1, 2016
1 parent 1386c1a commit b29a943
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 88 deletions.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@
"chalk": "1.1.3",
"cross-spawn": "4.0.0",
"css-loader": "0.23.1",
"detect-port": "0.1.4",
"eslint": "3.1.1",
"eslint-loader": "1.4.1",
"eslint-plugin-flowtype": "2.4.0",
Expand Down
1 change: 0 additions & 1 deletion scripts/eject.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ prompt(
path.join('scripts', 'build.js'),
path.join('scripts', 'start.js'),
path.join('scripts', 'utils', 'chrome.applescript'),
path.join('scripts', 'utils', 'detectPort.js'),
path.join('scripts', 'utils', 'prompt.js')
];

Expand Down
2 changes: 1 addition & 1 deletion scripts/start.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ var webpack = require('webpack');
var WebpackDevServer = require('webpack-dev-server');
var execSync = require('child_process').execSync;
var opn = require('opn');
var detect = require('./utils/detectPort');
var detect = require('detect-port');
var prompt = require('./utils/prompt');
var config = require('../config/webpack.config.dev');

Expand Down
86 changes: 0 additions & 86 deletions scripts/utils/detectPort.js

This file was deleted.

0 comments on commit b29a943

Please sign in to comment.