fix imports in src
This commit is contained in:
parent
5ef9a2a60c
commit
32168a94e0
25 changed files with 66 additions and 66 deletions
|
@ -1,5 +1,5 @@
|
|||
import * as inputActions from '../actions/input';
|
||||
import * as operationActions from '../actions/operation';
|
||||
import * as inputActions from 'actions/input';
|
||||
import * as operationActions from 'actions/operation';
|
||||
|
||||
export default class BackgroundInputComponent {
|
||||
constructor(store) {
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
import messages from '../content/messages';
|
||||
import * as commandActions from '../actions/command';
|
||||
import * as consoleActions from '../actions/console';
|
||||
import * as inputActions from '../actions/input';
|
||||
import * as settingsActions from '../actions/setting';
|
||||
import * as tabActions from '../actions/tab';
|
||||
import messages from 'content/messages';
|
||||
import * as commandActions from 'actions/command';
|
||||
import * as consoleActions from 'actions/console';
|
||||
import * as inputActions from 'actions/input';
|
||||
import * as settingsActions from 'actions/setting';
|
||||
import * as tabActions from 'actions/tab';
|
||||
|
||||
export default class BackgroundComponent {
|
||||
constructor(store) {
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
import messages from '../content/messages';
|
||||
import * as completionActions from '../actions/completion';
|
||||
import messages from 'content/messages';
|
||||
import * as completionActions from 'actions/completion';
|
||||
|
||||
export default class ConsoleComponent {
|
||||
constructor(wrapper, store) {
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import messages from '../content/messages';
|
||||
import messages from 'content/messages';
|
||||
|
||||
export default class ContentInputComponent {
|
||||
constructor(target) {
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
import * as followActions from '../actions/follow';
|
||||
import messages from '../content/messages';
|
||||
import Hint from '../content/hint';
|
||||
import HintKeyProducer from '../content/hint-key-producer';
|
||||
import * as followActions from 'actions/follow';
|
||||
import messages from 'content/messages';
|
||||
import Hint from 'content/hint';
|
||||
import HintKeyProducer from 'content/hint-key-producer';
|
||||
|
||||
const DEFAULT_HINT_CHARSET = 'abcdefghijklmnopqrstuvwxyz';
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
import * as settingActions from '../actions/setting';
|
||||
import { validate } from '../shared/validators/setting';
|
||||
import * as settingActions from 'actions/setting';
|
||||
import { validate } from 'shared/validators/setting';
|
||||
|
||||
export default class SettingComponent {
|
||||
constructor(wrapper, store) {
|
||||
|
|
Reference in a new issue