[Copilot] Update loader-utils dependency (#2458)

* Add copilot instructions and skills for build and tests.

* Add dev-server skill.

* Auth Util changes to fix Entra login while running from copilot.

* Fix lint issue.

* Copilot generated update for loader-utils & less-vars-loader dependency.
This commit is contained in:
jawelton74
2026-04-15 16:11:52 -07:00
committed by GitHub
parent df6f24780d
commit 255919e082
3 changed files with 16 additions and 41 deletions

View File

@@ -0,0 +1,13 @@
diff --git a/node_modules/less-vars-loader/index.js b/node_modules/less-vars-loader/index.js
index 14183c1..095c807 100644
--- a/node_modules/less-vars-loader/index.js
+++ b/node_modules/less-vars-loader/index.js
@@ -7,7 +7,7 @@ const entries = require('object.entries');
module.exports = function(source) {
this.cacheable && this.cacheable();
- const query = loaderUtils.parseQuery(this.query);
+ const query = loaderUtils.getOptions(this) || {};
const camelCaseKeys = !!(query.camelCase || query.camelcase);
const resolveVariables = !!(query.resolveVariables || query.resolvevariables);