Move commands to background/shared

jh-changes
Shin'ya Ueoka 6 years ago
parent 62d3c09f61
commit 4d4aaa2c4b
  1. 2
      src/background/actions/command.js
  2. 0
      src/background/shared/commands/docs.js
  3. 0
      src/background/shared/commands/parsers.js
  4. 2
      src/background/shared/completions/index.js
  5. 2
      test/background/shared/commands/parsers.test.js

@ -2,7 +2,7 @@ import actions from '../actions';
import * as consoleActions from './console';
import * as tabs from '../shared/tabs';
import * as bookmarks from '../shared/bookmarks';
import * as parsers from 'shared/commands/parsers';
import * as parsers from 'background/shared/commands/parsers';
import * as properties from 'shared/settings/properties';
const openCommand = async(url) => {

@ -1,4 +1,4 @@
import commandDocs from 'shared/commands/docs';
import commandDocs from 'background/shared/commands/docs';
import * as tabs from './tabs';
import * as histories from './histories';
import * as bookmarks from './bookmarks';

@ -1,4 +1,4 @@
import * as parsers from 'shared/commands/parsers';
import * as parsers from 'background/shared/commands/parsers';
describe("shared/commands/parsers", () => {
describe("#parsers.parseSetOption", () => {