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:
+40
-42
@@ -15,53 +15,51 @@ const astUtils = require("./utils/ast-utils");
|
||||
// Rule Definition
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
/** @type {import('../types').Rule.RuleModule} */
|
||||
/** @type {import('../shared/types').Rule} */
|
||||
module.exports = {
|
||||
meta: {
|
||||
type: "suggestion",
|
||||
meta: {
|
||||
type: "suggestion",
|
||||
|
||||
docs: {
|
||||
description: "Disallow multiline strings",
|
||||
recommended: false,
|
||||
frozen: true,
|
||||
url: "https://eslint.org/docs/latest/rules/no-multi-str",
|
||||
},
|
||||
docs: {
|
||||
description: "Disallow multiline strings",
|
||||
recommended: false,
|
||||
url: "https://eslint.org/docs/latest/rules/no-multi-str"
|
||||
},
|
||||
|
||||
schema: [],
|
||||
schema: [],
|
||||
|
||||
messages: {
|
||||
multilineString:
|
||||
"Multiline support is limited to browsers supporting ES5 only.",
|
||||
},
|
||||
},
|
||||
messages: {
|
||||
multilineString: "Multiline support is limited to browsers supporting ES5 only."
|
||||
}
|
||||
},
|
||||
|
||||
create(context) {
|
||||
/**
|
||||
* Determines if a given node is part of JSX syntax.
|
||||
* @param {ASTNode} node The node to check.
|
||||
* @returns {boolean} True if the node is a JSX node, false if not.
|
||||
* @private
|
||||
*/
|
||||
function isJSXElement(node) {
|
||||
return node.type.indexOf("JSX") === 0;
|
||||
}
|
||||
create(context) {
|
||||
|
||||
//--------------------------------------------------------------------------
|
||||
// Public API
|
||||
//--------------------------------------------------------------------------
|
||||
/**
|
||||
* Determines if a given node is part of JSX syntax.
|
||||
* @param {ASTNode} node The node to check.
|
||||
* @returns {boolean} True if the node is a JSX node, false if not.
|
||||
* @private
|
||||
*/
|
||||
function isJSXElement(node) {
|
||||
return node.type.indexOf("JSX") === 0;
|
||||
}
|
||||
|
||||
return {
|
||||
Literal(node) {
|
||||
if (
|
||||
astUtils.LINEBREAK_MATCHER.test(node.raw) &&
|
||||
!isJSXElement(node.parent)
|
||||
) {
|
||||
context.report({
|
||||
node,
|
||||
messageId: "multilineString",
|
||||
});
|
||||
}
|
||||
},
|
||||
};
|
||||
},
|
||||
//--------------------------------------------------------------------------
|
||||
// Public API
|
||||
//--------------------------------------------------------------------------
|
||||
|
||||
return {
|
||||
|
||||
Literal(node) {
|
||||
if (astUtils.LINEBREAK_MATCHER.test(node.raw) && !isJSXElement(node.parent)) {
|
||||
context.report({
|
||||
node,
|
||||
messageId: "multilineString"
|
||||
});
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user