diff options
Diffstat (limited to 'dev')
-rw-r--r-- | dev/data/manifest-variants.json | 10 | ||||
-rw-r--r-- | dev/dictionary-validate.js | 2 | ||||
-rw-r--r-- | dev/schema-validate.js | 2 |
3 files changed, 7 insertions, 7 deletions
diff --git a/dev/data/manifest-variants.json b/dev/data/manifest-variants.json index 72e07086..178f1395 100644 --- a/dev/data/manifest-variants.json +++ b/dev/data/manifest-variants.json @@ -122,7 +122,7 @@ "fileName": "yomichan-chrome.zip", "excludeFiles": [ "sw.js", - "bg/js/simple-dom-parser.js", + "js/dom/simple-dom-parser.js", "lib/parse5.js" ] }, @@ -147,7 +147,7 @@ ], "excludeFiles": [ "sw.js", - "bg/js/simple-dom-parser.js", + "js/dom/simple-dom-parser.js", "lib/parse5.js" ] }, @@ -175,7 +175,7 @@ ], "excludeFiles": [ "background.html", - "bg/js/native-simple-dom-parser.js" + "js/dom/native-simple-dom-parser.js" ] }, { @@ -219,7 +219,7 @@ ], "excludeFiles": [ "sw.js", - "bg/js/simple-dom-parser.js", + "js/dom/simple-dom-parser.js", "lib/parse5.js" ] }, @@ -255,7 +255,7 @@ ], "excludeFiles": [ "sw.js", - "bg/js/simple-dom-parser.js", + "js/dom/simple-dom-parser.js", "lib/parse5.js" ] } diff --git a/dev/dictionary-validate.js b/dev/dictionary-validate.js index 17d6e3de..fbb22cfc 100644 --- a/dev/dictionary-validate.js +++ b/dev/dictionary-validate.js @@ -24,7 +24,7 @@ const vm = new VM(); vm.execute([ 'js/core.js', 'js/general/cache-map.js', - 'bg/js/json-schema.js' + 'js/data/json-schema.js' ]); const JsonSchemaValidator = vm.get('JsonSchemaValidator'); diff --git a/dev/schema-validate.js b/dev/schema-validate.js index 0ede032b..1cb69618 100644 --- a/dev/schema-validate.js +++ b/dev/schema-validate.js @@ -22,7 +22,7 @@ const vm = new VM(); vm.execute([ 'js/core.js', 'js/general/cache-map.js', - 'bg/js/json-schema.js' + 'js/data/json-schema.js' ]); const JsonSchemaValidator = vm.get('JsonSchemaValidator'); |