Skip to content

Commit

Permalink
Fix webpack require failure due to "./" notation
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Clark committed Jul 24, 2015
1 parent 00342c4 commit 8d9746d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const url = require('url');
const HttpsProxyAgent = require('https-proxy-agent');
const LRU = require('lru-cache');
const EventEmitter = require('events').EventEmitter;
const RippleError = require('./').RippleError;
const RippleError = require('./rippleerror').RippleError;
const Amount = require('./amount').Amount;
const RangeSet = require('./rangeset').RangeSet;
const log = require('./log').internal.sub('server');
Expand Down

0 comments on commit 8d9746d

Please sign in to comment.