move src/native_background.ts to src/background/

This commit is contained in:
Saul Reynolds-Haertle 2018-09-29 16:19:56 -07:00
parent a4274d3839
commit eeb74c95c6
6 changed files with 6 additions and 6 deletions

View file

@ -14,7 +14,7 @@ import * as download_background from "@src/background/download_background"
import * as itertools from "@src/lib/itertools" import * as itertools from "@src/lib/itertools"
import * as keyseq from "./keyseq" import * as keyseq from "./keyseq"
import * as request from "./requests" import * as request from "./requests"
import * as native from "./native_background" import * as native from "@src/background/native_background"
import state from "./state" import state from "./state"
import * as webext from "./lib/webext" import * as webext from "./lib/webext"
import { AutoContain } from "./lib/autocontainers" import { AutoContain } from "./lib/autocontainers"

View file

@ -1,5 +1,5 @@
import * as Controller from "@src/background/controller_background" import * as Controller from "@src/background/controller_background"
import * as Native from "@src/native_background" import * as Native from "@src/background/native_background"
import Logger from "@src/lib/logging" import Logger from "@src/lib/logging"
const logger = new Logger("rc") const logger = new Logger("rc")

View file

@ -4,7 +4,7 @@
import * as semverCompare from "semver-compare" import * as semverCompare from "semver-compare"
import * as config from "@src/lib/config" import * as config from "@src/lib/config"
import { browserBg } from "./lib/webext" import { browserBg } from "@src/lib/webext"
import Logger from "@src/lib/logging" import Logger from "@src/lib/logging"
const logger = new Logger("native") const logger = new Logger("native")

View file

@ -47,7 +47,7 @@ import state from "./state"
import * as webext from "./lib/webext" import * as webext from "./lib/webext"
import Mark from "mark.js" import Mark from "mark.js"
import * as keyseq from "./keyseq" import * as keyseq from "./keyseq"
import * as native from "./native_background" import * as native from "@src/background/native_background"
import * as styling from "./styling" import * as styling from "./styling"
;(window as any).tri = Object.assign(Object.create(null), { ;(window as any).tri = Object.assign(Object.create(null), {
browserBg: webext.browserBg, browserBg: webext.browserBg,

View file

@ -130,7 +130,7 @@ import * as excmd_parser from "./parsers/exmode"
import { mapstrToKeyseq } from "./keyseq" import { mapstrToKeyseq } from "./keyseq"
//#background_helper //#background_helper
import * as Native from "./native_background" import * as Native from "@src/background/native_background"
/** @hidden */ /** @hidden */
export const cmd_params = new Map<string, Map<string, string>>() export const cmd_params = new Map<string, Map<string, string>>()

View file

@ -1,4 +1,4 @@
import * as Native from "./native_background" import * as Native from "@src/background/native_background"
import * as config from "@src/lib/config" import * as config from "@src/lib/config"
type scrollingDirection = "scrollLeft" | "scrollTop" type scrollingDirection = "scrollLeft" | "scrollTop"