Skip to content

Commit

Permalink
back to relative linking in the bots code
Browse files Browse the repository at this point in the history
- fix dist webpack
  • Loading branch information
mrWh1te committed Feb 18, 2020
1 parent 3c9fa57 commit ddfda1a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions src/botmation/bots/instagram/actions/auth.ts
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
import { Page } from 'puppeteer'

import { BotAction } from 'botmation/interfaces/bot-action.interfaces'
import { BotActionsChainFactory } from 'botmation/factories/bot-actions-chain.factory'
import { BotAction } from '../../../interfaces/bot-action.interfaces'
import { BotActionsChainFactory } from '../../../factories/bot-actions-chain.factory'

import { goTo, waitForNavigation } from 'botmation/actions/navigation'
import { log } from 'botmation/actions/console'
import { goTo, waitForNavigation } from '../../../actions/navigation'
import { log } from '../../../actions/console'

import { getInstagramLoginUrl } from 'botmation/bots/instagram/helpers/urls'
import { getInstagramLoginUrl } from '../helpers/urls'
import {
FORM_AUTH_USERNAME_INPUT_SELECTOR,
FORM_AUTH_PASSWORD_INPUT_SELECTOR,
FORM_AUTH_SUBMIT_BUTTON_SELECTOR
} from '../selectors'
import { click, type } from 'botmation/actions/input'
import { click, type } from '../../../actions/input'



Expand Down
6 changes: 3 additions & 3 deletions src/botmation/bots/instagram/helpers/auth.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { Page } from 'puppeteer'

import { goTo } from 'botmation/actions/navigation'
import { BotOptions } from 'botmation/interfaces/bot-options.interfaces'
import { ConditionalBotAction } from 'botmation/interfaces'
import { goTo } from '../../../actions/navigation'
import { BotOptions } from '../../../interfaces/bot-options.interfaces'
import { ConditionalBotAction } from '../../../interfaces/bot-action.interfaces'

import { getInstagramLoginUrl } from './urls'

Expand Down

0 comments on commit ddfda1a

Please sign in to comment.