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.
44 lines
959 B
JavaScript
44 lines
959 B
JavaScript
/**
|
|
* @fileoverview Rule to flag use of a debugger statement
|
|
* @author Nicholas C. Zakas
|
|
*/
|
|
|
|
"use strict";
|
|
|
|
//------------------------------------------------------------------------------
|
|
// Rule Definition
|
|
//------------------------------------------------------------------------------
|
|
|
|
/** @type {import('../shared/types').Rule} */
|
|
module.exports = {
|
|
meta: {
|
|
type: "problem",
|
|
|
|
docs: {
|
|
description: "Disallow the use of `debugger`",
|
|
recommended: true,
|
|
url: "https://eslint.org/docs/latest/rules/no-debugger"
|
|
},
|
|
|
|
fixable: null,
|
|
schema: [],
|
|
|
|
messages: {
|
|
unexpected: "Unexpected 'debugger' statement."
|
|
}
|
|
},
|
|
|
|
create(context) {
|
|
|
|
return {
|
|
DebuggerStatement(node) {
|
|
context.report({
|
|
node,
|
|
messageId: "unexpected"
|
|
});
|
|
}
|
|
};
|
|
|
|
}
|
|
};
|