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:
+47
-52
@@ -14,71 +14,66 @@
|
||||
* @returns {boolean} Whether or not the node is the argument of a typeof operator.
|
||||
*/
|
||||
function hasTypeOfOperator(node) {
|
||||
const parent = node.parent;
|
||||
const parent = node.parent;
|
||||
|
||||
return parent.type === "UnaryExpression" && parent.operator === "typeof";
|
||||
return parent.type === "UnaryExpression" && parent.operator === "typeof";
|
||||
}
|
||||
|
||||
//------------------------------------------------------------------------------
|
||||
// Rule Definition
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
/** @type {import('../types').Rule.RuleModule} */
|
||||
/** @type {import('../shared/types').Rule} */
|
||||
module.exports = {
|
||||
meta: {
|
||||
type: "problem",
|
||||
meta: {
|
||||
type: "problem",
|
||||
|
||||
defaultOptions: [
|
||||
{
|
||||
typeof: false,
|
||||
},
|
||||
],
|
||||
docs: {
|
||||
description: "Disallow the use of undeclared variables unless mentioned in `/*global */` comments",
|
||||
recommended: true,
|
||||
url: "https://eslint.org/docs/latest/rules/no-undef"
|
||||
},
|
||||
|
||||
docs: {
|
||||
description:
|
||||
"Disallow the use of undeclared variables unless mentioned in `/*global */` comments",
|
||||
recommended: true,
|
||||
url: "https://eslint.org/docs/latest/rules/no-undef",
|
||||
},
|
||||
schema: [
|
||||
{
|
||||
type: "object",
|
||||
properties: {
|
||||
typeof: {
|
||||
type: "boolean",
|
||||
default: false
|
||||
}
|
||||
},
|
||||
additionalProperties: false
|
||||
}
|
||||
],
|
||||
messages: {
|
||||
undef: "'{{name}}' is not defined."
|
||||
}
|
||||
},
|
||||
|
||||
schema: [
|
||||
{
|
||||
type: "object",
|
||||
properties: {
|
||||
typeof: {
|
||||
type: "boolean",
|
||||
},
|
||||
},
|
||||
additionalProperties: false,
|
||||
},
|
||||
],
|
||||
messages: {
|
||||
undef: "'{{name}}' is not defined.",
|
||||
},
|
||||
},
|
||||
create(context) {
|
||||
const options = context.options[0];
|
||||
const considerTypeOf = options && options.typeof === true || false;
|
||||
const sourceCode = context.sourceCode;
|
||||
|
||||
create(context) {
|
||||
const [{ typeof: considerTypeOf }] = context.options;
|
||||
const sourceCode = context.sourceCode;
|
||||
return {
|
||||
"Program:exit"(node) {
|
||||
const globalScope = sourceCode.getScope(node);
|
||||
|
||||
return {
|
||||
"Program:exit"(node) {
|
||||
const globalScope = sourceCode.getScope(node);
|
||||
globalScope.through.forEach(ref => {
|
||||
const identifier = ref.identifier;
|
||||
|
||||
globalScope.through.forEach(ref => {
|
||||
const identifier = ref.identifier;
|
||||
if (!considerTypeOf && hasTypeOfOperator(identifier)) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (!considerTypeOf && hasTypeOfOperator(identifier)) {
|
||||
return;
|
||||
}
|
||||
|
||||
context.report({
|
||||
node: identifier,
|
||||
messageId: "undef",
|
||||
data: identifier,
|
||||
});
|
||||
});
|
||||
},
|
||||
};
|
||||
},
|
||||
context.report({
|
||||
node: identifier,
|
||||
messageId: "undef",
|
||||
data: identifier
|
||||
});
|
||||
});
|
||||
}
|
||||
};
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user