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.
12 lines
345 B
JavaScript
12 lines
345 B
JavaScript
/**
|
|
* @author Toru Nagashima <https://github.com/mysticatea>
|
|
*/
|
|
"use strict";
|
|
|
|
module.exports = {
|
|
isCombiningCharacter: require("./is-combining-character"),
|
|
isEmojiModifier: require("./is-emoji-modifier"),
|
|
isRegionalIndicatorSymbol: require("./is-regional-indicator-symbol"),
|
|
isSurrogatePair: require("./is-surrogate-pair")
|
|
};
|