diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2021-02-14 11:24:43 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-14 11:24:43 -0500 |
commit | 0117df6bd8b1603fec0eb5b8d840e777372f47c8 (patch) | |
tree | af4ca3c9fd329c180c280e41a4de9294c281e3d9 /dev/build-libs.js | |
parent | e419a418f6f03ef0a24330b67e7b76c5e3a7c22d (diff) |
Update lint and tests (#1388)
* Update paths to no longer use bg/, fg/, or mixed/
* Only allow modal-jquery.js to use jQuery
Diffstat (limited to 'dev/build-libs.js')
-rw-r--r-- | dev/build-libs.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dev/build-libs.js b/dev/build-libs.js index 2831457e..562b77fd 100644 --- a/dev/build-libs.js +++ b/dev/build-libs.js @@ -20,7 +20,7 @@ const path = require('path'); const browserify = require('browserify'); async function main() { - const extLibPath = path.join(__dirname, '..', 'ext', 'mixed', 'lib'); + const extLibPath = path.join(__dirname, '..', 'ext', 'lib'); const parse5Path = require.resolve('parse5'); const content = await new Promise((resolve, reject) => { |