diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2021-02-13 21:28:47 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-13 21:28:47 -0500 |
commit | deed5027cd18bcdb9cb9d13cb7831be0ec5384e8 (patch) | |
tree | c4df1967a117bf05398b694290e2960b8ff4e970 /dev | |
parent | e9358997c03ee6ca2b5e9f26e8e416c8508c88e6 (diff) |
Move mixed/lib/ to lib/ (#1382)
Diffstat (limited to 'dev')
-rw-r--r-- | dev/data/manifest-variants.json | 8 | ||||
-rw-r--r-- | dev/util.js | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/dev/data/manifest-variants.json b/dev/data/manifest-variants.json index 9d7c74d4..dd46dc22 100644 --- a/dev/data/manifest-variants.json +++ b/dev/data/manifest-variants.json @@ -123,7 +123,7 @@ "excludeFiles": [ "sw.js", "bg/js/simple-dom-parser.js", - "mixed/lib/parse5.js" + "lib/parse5.js" ] }, { @@ -148,7 +148,7 @@ "excludeFiles": [ "sw.js", "bg/js/simple-dom-parser.js", - "mixed/lib/parse5.js" + "lib/parse5.js" ] }, { @@ -220,7 +220,7 @@ "excludeFiles": [ "sw.js", "bg/js/simple-dom-parser.js", - "mixed/lib/parse5.js" + "lib/parse5.js" ] }, { @@ -256,7 +256,7 @@ "excludeFiles": [ "sw.js", "bg/js/simple-dom-parser.js", - "mixed/lib/parse5.js" + "lib/parse5.js" ] } ] diff --git a/dev/util.js b/dev/util.js index a0c35a9e..85a478ac 100644 --- a/dev/util.js +++ b/dev/util.js @@ -25,7 +25,7 @@ let JSZip = null; function getJSZip() { if (JSZip === null) { process.noDeprecation = true; // Suppress a warning about JSZip - JSZip = require(path.join(__dirname, '../ext/mixed/lib/jszip.min.js')); + JSZip = require(path.join(__dirname, '../ext/lib/jszip.min.js')); process.noDeprecation = false; } return JSZip; |