aboutsummaryrefslogtreecommitdiff
path: root/dev
diff options
context:
space:
mode:
Diffstat (limited to 'dev')
-rw-r--r--dev/data/manifest-variants.json18
-rw-r--r--dev/dictionary-validate.js4
-rw-r--r--dev/schema-validate.js4
3 files changed, 13 insertions, 13 deletions
diff --git a/dev/data/manifest-variants.json b/dev/data/manifest-variants.json
index dd46dc22..aa06bf58 100644
--- a/dev/data/manifest-variants.json
+++ b/dev/data/manifest-variants.json
@@ -39,15 +39,15 @@
"file://*/*"
],
"js": [
- "mixed/js/core.js",
- "mixed/js/yomichan.js",
- "mixed/js/comm.js",
- "mixed/js/api.js",
- "mixed/js/dynamic-loader.js",
- "mixed/js/frame-client.js",
- "mixed/js/text-scanner.js",
- "mixed/js/document-util.js",
- "mixed/js/hotkey-handler.js",
+ "js/core.js",
+ "js/yomichan.js",
+ "js/comm/cross-frame-api.js",
+ "js/comm/api.js",
+ "js/script/dynamic-loader.js",
+ "js/comm/frame-client.js",
+ "js/language/text-scanner.js",
+ "js/dom/document-util.js",
+ "js/input/hotkey-handler.js",
"fg/js/dom-text-scanner.js",
"fg/js/popup.js",
"fg/js/text-source-range.js",
diff --git a/dev/dictionary-validate.js b/dev/dictionary-validate.js
index 873bcb8a..17d6e3de 100644
--- a/dev/dictionary-validate.js
+++ b/dev/dictionary-validate.js
@@ -22,8 +22,8 @@ const {VM} = require('./vm');
const vm = new VM();
vm.execute([
- 'mixed/js/core.js',
- 'mixed/js/cache-map.js',
+ 'js/core.js',
+ 'js/general/cache-map.js',
'bg/js/json-schema.js'
]);
const JsonSchemaValidator = vm.get('JsonSchemaValidator');
diff --git a/dev/schema-validate.js b/dev/schema-validate.js
index bf496223..0ede032b 100644
--- a/dev/schema-validate.js
+++ b/dev/schema-validate.js
@@ -20,8 +20,8 @@ const {VM} = require('./vm');
const vm = new VM();
vm.execute([
- 'mixed/js/core.js',
- 'mixed/js/cache-map.js',
+ 'js/core.js',
+ 'js/general/cache-map.js',
'bg/js/json-schema.js'
]);
const JsonSchemaValidator = vm.get('JsonSchemaValidator');