build: update npm install command to use --legacy-peer-deps
This change modifies the build scripts to use --legacy-peer-deps flag when installing npm dependencies to resolve potential peer dependency conflicts during the build process. The change is applied to both bash (build.sh) and batch (build.bat) build scripts.
This commit is contained in:
+35
-53
@@ -1,7 +1,6 @@
|
||||
/**
|
||||
* @fileoverview Rule to disallow use of the new operator with the `Symbol` object
|
||||
* @author Alberto Rodríguez
|
||||
* @deprecated in ESLint v9.0.0
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -10,65 +9,48 @@
|
||||
// Rule Definition
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
/** @type {import('../types').Rule.RuleModule} */
|
||||
/** @type {import('../shared/types').Rule} */
|
||||
module.exports = {
|
||||
meta: {
|
||||
type: "problem",
|
||||
meta: {
|
||||
type: "problem",
|
||||
|
||||
docs: {
|
||||
description: "Disallow `new` operators with the `Symbol` object",
|
||||
recommended: false,
|
||||
url: "https://eslint.org/docs/latest/rules/no-new-symbol",
|
||||
},
|
||||
docs: {
|
||||
description: "Disallow `new` operators with the `Symbol` object",
|
||||
recommended: true,
|
||||
url: "https://eslint.org/docs/latest/rules/no-new-symbol"
|
||||
},
|
||||
|
||||
deprecated: {
|
||||
message: "The rule was replaced with a more general rule.",
|
||||
url: "https://eslint.org/docs/latest/use/migrate-to-9.0.0#eslint-recommended",
|
||||
deprecatedSince: "9.0.0",
|
||||
availableUntil: "11.0.0",
|
||||
replacedBy: [
|
||||
{
|
||||
rule: {
|
||||
name: "no-new-native-nonconstructor",
|
||||
url: "https://eslint.org/docs/latest/rules/no-new-native-nonconstructor",
|
||||
},
|
||||
},
|
||||
],
|
||||
},
|
||||
schema: [],
|
||||
|
||||
schema: [],
|
||||
messages: {
|
||||
noNewSymbol: "`Symbol` cannot be called as a constructor."
|
||||
}
|
||||
},
|
||||
|
||||
messages: {
|
||||
noNewSymbol: "`Symbol` cannot be called as a constructor.",
|
||||
},
|
||||
},
|
||||
create(context) {
|
||||
|
||||
create(context) {
|
||||
const sourceCode = context.sourceCode;
|
||||
const sourceCode = context.sourceCode;
|
||||
|
||||
return {
|
||||
"Program:exit"(node) {
|
||||
const globalScope = sourceCode.getScope(node);
|
||||
const variable = globalScope.set.get("Symbol");
|
||||
return {
|
||||
"Program:exit"(node) {
|
||||
const globalScope = sourceCode.getScope(node);
|
||||
const variable = globalScope.set.get("Symbol");
|
||||
|
||||
if (variable && variable.defs.length === 0) {
|
||||
variable.references.forEach(ref => {
|
||||
const idNode = ref.identifier;
|
||||
const parent = idNode.parent;
|
||||
if (variable && variable.defs.length === 0) {
|
||||
variable.references.forEach(ref => {
|
||||
const idNode = ref.identifier;
|
||||
const parent = idNode.parent;
|
||||
|
||||
if (
|
||||
parent &&
|
||||
parent.type === "NewExpression" &&
|
||||
parent.callee === idNode
|
||||
) {
|
||||
context.report({
|
||||
node: idNode,
|
||||
messageId: "noNewSymbol",
|
||||
});
|
||||
}
|
||||
});
|
||||
}
|
||||
},
|
||||
};
|
||||
},
|
||||
if (parent && parent.type === "NewExpression" && parent.callee === idNode) {
|
||||
context.report({
|
||||
node: idNode,
|
||||
messageId: "noNewSymbol"
|
||||
});
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user