diff options
author | Darius Jahandarie <djahandarie@gmail.com> | 2023-11-09 13:30:31 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-09 13:30:31 +0000 |
commit | 5c5a167b4792af379cdacf633513cebf20728cd2 (patch) | |
tree | 5b6be3620a557d0b9177047003f6d742d9d2a32d /ext/sw.js | |
parent | b64f51c3b13a46af4dd7f1e43048ac19c781ca7b (diff) | |
parent | 0f4d36938fd0d844f548aa5a7f7e7842df8dfb41 (diff) |
Merge pull request #307 from themoeway/modernize
Modernize codebase
Diffstat (limited to 'ext/sw.js')
-rw-r--r-- | ext/sw.js | 39 |
1 files changed, 1 insertions, 38 deletions
@@ -1,6 +1,5 @@ /* * Copyright (C) 2023 Yomitan Authors - * Copyright (C) 2020-2022 Yomichan Authors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -15,40 +14,4 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <https://www.gnu.org/licenses/>. */ - -self.importScripts( - '/lib/parse5.js', - '/lib/wanakana.min.js', - '/js/core.js', - '/js/yomichan.js', - '/js/accessibility/accessibility-controller.js', - '/js/background/backend.js', - '/js/background/profile-conditions-util.js', - '/js/background/request-builder.js', - '/js/background/script-manager.js', - '/js/comm/anki-connect.js', - '/js/comm/clipboard-monitor.js', - '/js/comm/clipboard-reader.js', - '/js/comm/mecab.js', - '/js/data/anki-util.js', - '/js/data/database.js', - '/js/data/json-schema.js', - '/js/data/options-util.js', - '/js/data/permissions-util.js', - '/js/data/sandbox/array-buffer-util.js', - '/js/dom/simple-dom-parser.js', - '/js/extension/environment.js', - '/js/general/cache-map.js', - '/js/general/object-property-accessor.js', - '/js/general/regex-util.js', - '/js/general/text-source-map.js', - '/js/language/deinflector.js', - '/js/language/dictionary-database.js', - '/js/language/sandbox/dictionary-data-util.js', - '/js/language/sandbox/japanese-util.js', - '/js/language/translator.js', - '/js/media/audio-downloader.js', - '/js/media/media-util.js', - '/js/templates/template-patcher.js', - '/js/background/background-main.js' -); +import './js/background/background-main.js'; |