aboutsummaryrefslogtreecommitdiff
path: root/ext/sw.js
diff options
context:
space:
mode:
authorDarius Jahandarie <djahandarie@gmail.com>2023-11-04 18:45:57 +0900
committerDarius Jahandarie <djahandarie@gmail.com>2023-11-04 18:45:57 +0900
commitef79eab44bfd000792c610b968b5ceefd41e76a0 (patch)
tree48b04f30f6248caedbd880801aa49402a9e8066a /ext/sw.js
parent376151096431d4362e4baaacf0cef4a534e169f7 (diff)
Modernize codebase
- Use ES modules - Remove vendored libs and build them from npm using esbuild - Switch from JSZip to zip.js
Diffstat (limited to 'ext/sw.js')
-rw-r--r--ext/sw.js39
1 files changed, 1 insertions, 38 deletions
diff --git a/ext/sw.js b/ext/sw.js
index bd742f96..981fb17f 100644
--- a/ext/sw.js
+++ b/ext/sw.js
@@ -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';