From c722f15f8129b00dcaab6c97deb518c404f81e0f Mon Sep 17 00:00:00 2001 From: Colin Rotherham Date: Tue, 25 Feb 2025 13:28:37 +0000 Subject: [PATCH] fix: revert to `$` for jQuery external global --- gulp/tasks/scripts.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulp/tasks/scripts.js b/gulp/tasks/scripts.js index a7fe4d3b..b3545926 100644 --- a/gulp/tasks/scripts.js +++ b/gulp/tasks/scripts.js @@ -21,7 +21,7 @@ function compileScripts(assetPath, { srcPath, destPath, output = {} }) { input: join(srcPath, assetPath), plugins: [ externalGlobals({ - jquery: 'window.jQuery' + jquery: '$' }), nodeResolve(), commonjs()