Skip to content

Commit

Permalink
only use relative refs in core/abstract runtime
Browse files Browse the repository at this point in the history
  • Loading branch information
James Lees committed Feb 12, 2020
1 parent ca65b2a commit 02d321c
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion src/core/auth/auth_transports.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import AbstractRuntime from 'runtimes/interface';
import AbstractRuntime from '../../runtimes/interface';

interface AuthTransport {
(context: AbstractRuntime, socketId: string, callback: Function): void;
Expand Down
2 changes: 1 addition & 1 deletion src/core/pusher.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import AbstractRuntime from 'runtimes/interface';
import AbstractRuntime from '../runtimes/interface';
import Runtime from 'runtime';
import Util from './util';
import * as Collections from './utils/collections';
Expand Down
2 changes: 1 addition & 1 deletion src/core/timeline/timeline_transport.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import TimelineSender from 'core/timeline/timeline_sender';
import TimelineSender from '../timeline/timeline_sender';

interface TimelineTransport {
name: string;
Expand Down
22 changes: 11 additions & 11 deletions src/runtimes/interface.ts
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
import { AuthTransports } from 'core/auth/auth_transports';
import TimelineSender from 'core/timeline/timeline_sender';
import TimelineTransport from 'core/timeline/timeline_transport';
import Ajax from 'core/http/ajax';
import Reachability from 'core/reachability';
import TransportsTable from 'core/transports/transports_table';
import Socket from 'core/socket';
import HTTPFactory from 'core/http/http_factory';
import HTTPRequest from 'core/http/http_request';
import Pusher from 'core/pusher';
import { AuthTransports } from '../core/auth/auth_transports';
import TimelineSender from '../core/timeline/timeline_sender';
import TimelineTransport from '../core/timeline/timeline_transport';
import Ajax from '../core/http/ajax';
import Reachability from '../core/reachability';
import TransportsTable from '../core/transports/transports_table';
import Socket from '../core/socket';
import HTTPFactory from '../core/http/http_factory';
import HTTPRequest from '../core/http/http_request';
import Pusher from '../core/pusher';
import JSONPRequest from './web/dom/jsonp_request';
import Strategy from 'core/strategies/strategy';
import Strategy from '../core/strategies/strategy';

/*
This interface is implemented in web/runtime, node/runtime, react-native/runtime
Expand Down

0 comments on commit 02d321c

Please sign in to comment.