Skip to content

Commit

Permalink
Fix import paths in adapters (prebid#3946)
Browse files Browse the repository at this point in the history
  • Loading branch information
hashedhyphen authored and sa1omon committed Nov 28, 2019
1 parent ea1b0c8 commit 61abac3
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions modules/bidglassBidAdapter.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import * as utils from 'src/utils';
import * as utils from '../src/utils';
// import {config} from 'src/config';
import {registerBidder} from 'src/adapters/bidderFactory';
import {registerBidder} from '../src/adapters/bidderFactory';

const BIDDER_CODE = 'bidglass';

Expand Down
4 changes: 2 additions & 2 deletions modules/hpmdnetworkBidAdapter.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { registerBidder } from 'src/adapters/bidderFactory';
import { BANNER } from 'src/mediaTypes';
import { registerBidder } from '../src/adapters/bidderFactory';
import { BANNER } from '../src/mediaTypes';

const BIDDER_CODE = 'hpmdnetwork';
const BIDDER_CODE_ALIAS = 'hpmd';
Expand Down
2 changes: 1 addition & 1 deletion modules/open8BidAdapter.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Renderer } from '../src/Renderer';
import {ajax} from '../src/ajax';
import * as utils from 'src/utils';
import * as utils from '../src/utils';
import { registerBidder } from '../src/adapters/bidderFactory';
import { VIDEO, BANNER } from '../src/mediaTypes';

Expand Down
4 changes: 2 additions & 2 deletions modules/reloadBidAdapter.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import {
BANNER
}
from 'src/mediaTypes';
from '../src/mediaTypes';
import {
registerBidder
}
from 'src/adapters/bidderFactory';
from '../src/adapters/bidderFactory';

const BIDDER_CODE = 'reload';

Expand Down
2 changes: 1 addition & 1 deletion modules/yieldlabBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import * as utils from '../src/utils'
import { registerBidder } from '../src/adapters/bidderFactory'
import find from 'core-js/library/fn/array/find'
import { VIDEO, BANNER } from '../src/mediaTypes'
import { Renderer } from 'src/Renderer'
import { Renderer } from '../src/Renderer'

const ENDPOINT = 'https://ad.yieldlab.net'
const BIDDER_CODE = 'yieldlab'
Expand Down

0 comments on commit 61abac3

Please sign in to comment.