From ef79eab44bfd000792c610b968b5ceefd41e76a0 Mon Sep 17 00:00:00 2001 From: Darius Jahandarie Date: Sat, 4 Nov 2023 18:45:57 +0900 Subject: Modernize codebase - Use ES modules - Remove vendored libs and build them from npm using esbuild - Switch from JSZip to zip.js --- ext/sw.js | 39 +-------------------------------------- 1 file changed, 1 insertion(+), 38 deletions(-) (limited to 'ext/sw.js') 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 . */ - -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'; -- cgit v1.2.3