Skip to content

Commit 5a835eb

Browse files
committed
Merge branch 'main' into ts-migration/25218
2 parents 9120124 + 3e77445 commit 5a835eb

File tree

338 files changed

+4268
-4608
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

338 files changed

+4268
-4608
lines changed

.github/actions/javascript/bumpVersion/index.js

Lines changed: 42 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -104,8 +104,20 @@ exports.updateiOSVersion = function updateiOSVersion(version) {
104104
/***/ }),
105105

106106
/***/ 8007:
107-
/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
107+
/***/ ((__unused_webpack_module, __webpack_exports__, __nccwpck_require__) => {
108108

109+
"use strict";
110+
__nccwpck_require__.r(__webpack_exports__);
111+
/* harmony export */ __nccwpck_require__.d(__webpack_exports__, {
112+
/* harmony export */ "MAX_INCREMENTS": () => (/* binding */ MAX_INCREMENTS),
113+
/* harmony export */ "SEMANTIC_VERSION_LEVELS": () => (/* binding */ SEMANTIC_VERSION_LEVELS),
114+
/* harmony export */ "getPreviousVersion": () => (/* binding */ getPreviousVersion),
115+
/* harmony export */ "getVersionNumberFromString": () => (/* binding */ getVersionNumberFromString),
116+
/* harmony export */ "getVersionStringFromNumber": () => (/* binding */ getVersionStringFromNumber),
117+
/* harmony export */ "incrementMinor": () => (/* binding */ incrementMinor),
118+
/* harmony export */ "incrementPatch": () => (/* binding */ incrementPatch),
119+
/* harmony export */ "incrementVersion": () => (/* binding */ incrementVersion)
120+
/* harmony export */ });
109121
const _ = __nccwpck_require__(5067);
110122

111123
const SEMANTIC_VERSION_LEVELS = {
@@ -235,18 +247,7 @@ function getPreviousVersion(currentVersion, level) {
235247
return getVersionStringFromNumber(major, minor, patch, build - 1);
236248
}
237249

238-
module.exports = {
239-
getVersionNumberFromString,
240-
getVersionStringFromNumber,
241-
incrementVersion,
242-
243-
// For tests
244-
MAX_INCREMENTS,
245-
SEMANTIC_VERSION_LEVELS,
246-
incrementMinor,
247-
incrementPatch,
248-
getPreviousVersion,
249-
};
250+
250251

251252

252253
/***/ }),
@@ -5954,6 +5955,34 @@ module.exports = underscoreNodeF._;
59545955
/******/ }
59555956
/******/
59565957
/************************************************************************/
5958+
/******/ /* webpack/runtime/define property getters */
5959+
/******/ (() => {
5960+
/******/ // define getter functions for harmony exports
5961+
/******/ __nccwpck_require__.d = (exports, definition) => {
5962+
/******/ for(var key in definition) {
5963+
/******/ if(__nccwpck_require__.o(definition, key) && !__nccwpck_require__.o(exports, key)) {
5964+
/******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
5965+
/******/ }
5966+
/******/ }
5967+
/******/ };
5968+
/******/ })();
5969+
/******/
5970+
/******/ /* webpack/runtime/hasOwnProperty shorthand */
5971+
/******/ (() => {
5972+
/******/ __nccwpck_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))
5973+
/******/ })();
5974+
/******/
5975+
/******/ /* webpack/runtime/make namespace object */
5976+
/******/ (() => {
5977+
/******/ // define __esModule on exports
5978+
/******/ __nccwpck_require__.r = (exports) => {
5979+
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
5980+
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
5981+
/******/ }
5982+
/******/ Object.defineProperty(exports, '__esModule', { value: true });
5983+
/******/ };
5984+
/******/ })();
5985+
/******/
59575986
/******/ /* webpack/runtime/compat */
59585987
/******/
59595988
/******/ if (typeof __nccwpck_require__ !== 'undefined') __nccwpck_require__.ab = __dirname + "/";

.github/actions/javascript/createOrUpdateStagingDeploy/createOrUpdateStagingDeploy.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ const _ = require('underscore');
44
const core = require('@actions/core');
55
const CONST = require('../../../libs/CONST');
66
const GithubUtils = require('../../../libs/GithubUtils');
7-
const GitUtils = require('../../../libs/GitUtils');
7+
const GitUtils = require('../../../libs/GitUtils').default;
88

99
async function run() {
1010
// Note: require('package.json').version does not work because ncc will resolve that to a plain string at compile time

0 commit comments

Comments
 (0)