rn-update-cli 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +167 -0
- package/README.zh-CN.md +167 -0
- package/cli.json +525 -0
- package/lib/api.d.ts +56 -0
- package/lib/api.js +671 -0
- package/lib/app.d.ts +107 -0
- package/lib/app.js +329 -0
- package/lib/auto-update.d.ts +35 -0
- package/lib/auto-update.js +507 -0
- package/lib/bin.d.ts +2 -0
- package/lib/bin.js +133 -0
- package/lib/bundle-pack.d.ts +6 -0
- package/lib/bundle-pack.js +91 -0
- package/lib/bundle-runner.d.ts +168 -0
- package/lib/bundle-runner.js +1305 -0
- package/lib/bundle.d.ts +45 -0
- package/lib/bundle.js +226 -0
- package/lib/cache.d.ts +10 -0
- package/lib/cache.js +25 -0
- package/lib/commands.d.ts +11 -0
- package/lib/commands.js +72 -0
- package/lib/diff.d.ts +18 -0
- package/lib/diff.js +690 -0
- package/lib/exports.d.ts +11 -0
- package/lib/exports.js +20 -0
- package/lib/install.d.ts +9 -0
- package/lib/install.js +51 -0
- package/lib/locales/en.d.ts +187 -0
- package/lib/locales/en.js +194 -0
- package/lib/locales/zh.d.ts +187 -0
- package/lib/locales/zh.js +194 -0
- package/lib/native-package.d.ts +21 -0
- package/lib/native-package.js +298 -0
- package/lib/package.d.ts +68 -0
- package/lib/package.js +487 -0
- package/lib/provider.d.ts +24 -0
- package/lib/provider.js +244 -0
- package/lib/standalone-publish.d.ts +17 -0
- package/lib/standalone-publish.js +433 -0
- package/lib/symbolicate.d.ts +35 -0
- package/lib/symbolicate.js +130 -0
- package/lib/types.d.ts +152 -0
- package/lib/types.js +2 -0
- package/lib/user.d.ts +8 -0
- package/lib/user.js +50 -0
- package/lib/utils/add-gitignore.d.ts +6 -0
- package/lib/utils/add-gitignore.js +44 -0
- package/lib/utils/app-info-parser/aab.d.ts +27 -0
- package/lib/utils/app-info-parser/aab.js +256 -0
- package/lib/utils/app-info-parser/apk.d.ts +19 -0
- package/lib/utils/app-info-parser/apk.js +95 -0
- package/lib/utils/app-info-parser/app.d.ts +9 -0
- package/lib/utils/app-info-parser/app.js +15 -0
- package/lib/utils/app-info-parser/index.d.ts +21 -0
- package/lib/utils/app-info-parser/index.js +51 -0
- package/lib/utils/app-info-parser/ipa.d.ts +19 -0
- package/lib/utils/app-info-parser/ipa.js +101 -0
- package/lib/utils/app-info-parser/resource-finder.d.ts +49 -0
- package/lib/utils/app-info-parser/resource-finder.js +429 -0
- package/lib/utils/app-info-parser/utils.d.ts +36 -0
- package/lib/utils/app-info-parser/utils.js +140 -0
- package/lib/utils/app-info-parser/xml-parser/binary.d.ts +61 -0
- package/lib/utils/app-info-parser/xml-parser/binary.js +577 -0
- package/lib/utils/app-info-parser/xml-parser/manifest.d.ts +15 -0
- package/lib/utils/app-info-parser/xml-parser/manifest.js +207 -0
- package/lib/utils/app-info-parser/zip.d.ts +29 -0
- package/lib/utils/app-info-parser/zip.js +97 -0
- package/lib/utils/check-lockfile.d.ts +6 -0
- package/lib/utils/check-lockfile.js +93 -0
- package/lib/utils/check-plugin.d.ts +12 -0
- package/lib/utils/check-plugin.js +36 -0
- package/lib/utils/command-result.d.ts +8 -0
- package/lib/utils/command-result.js +27 -0
- package/lib/utils/constants.d.ts +10 -0
- package/lib/utils/constants.js +39 -0
- package/lib/utils/dep-versions.d.ts +20 -0
- package/lib/utils/dep-versions.js +129 -0
- package/lib/utils/git.d.ts +14 -0
- package/lib/utils/git.js +64 -0
- package/lib/utils/hbcTransform.d.ts +111 -0
- package/lib/utils/hbcTransform.js +561 -0
- package/lib/utils/hermes-base.d.ts +227 -0
- package/lib/utils/hermes-base.js +1287 -0
- package/lib/utils/hermes-literals.d.ts +64 -0
- package/lib/utils/hermes-literals.js +260 -0
- package/lib/utils/http-helper.d.ts +10 -0
- package/lib/utils/http-helper.js +150 -0
- package/lib/utils/i18n.d.ts +22 -0
- package/lib/utils/i18n.js +46 -0
- package/lib/utils/index.d.ts +67 -0
- package/lib/utils/index.js +545 -0
- package/lib/utils/latest-version/index.d.ts +154 -0
- package/lib/utils/latest-version/index.js +331 -0
- package/lib/utils/options.d.ts +10 -0
- package/lib/utils/options.js +68 -0
- package/lib/utils/plugin-config.d.ts +14 -0
- package/lib/utils/plugin-config.js +66 -0
- package/lib/utils/runtime.d.ts +54 -0
- package/lib/utils/runtime.js +263 -0
- package/lib/utils/slim-sourcemap.d.ts +28 -0
- package/lib/utils/slim-sourcemap.js +106 -0
- package/lib/utils/zip-entries.d.ts +10 -0
- package/lib/utils/zip-entries.js +211 -0
- package/lib/utils/zip-options.d.ts +17 -0
- package/lib/utils/zip-options.js +190 -0
- package/lib/utils/zip-range.d.ts +148 -0
- package/lib/utils/zip-range.js +581 -0
- package/lib/utils/zip-raw-writer.d.ts +52 -0
- package/lib/utils/zip-raw-writer.js +209 -0
- package/lib/version-operations.d.ts +21 -0
- package/lib/version-operations.js +320 -0
- package/lib/versions.d.ts +66 -0
- package/lib/versions.js +402 -0
- package/package.json +113 -0
- package/proto/Configuration.proto +183 -0
- package/proto/Resources.proto +569 -0
package/lib/exports.d.ts
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* [INPUT]: 依赖 CLI 会话、应用、差分、发布 Provider、公共类型与交互工具模块
|
|
3
|
+
* [OUTPUT]: 对外提供包级公共 API,维持命令扩展和宿主集成所需的稳定导出面
|
|
4
|
+
* [POS]: CLI 公共出口,只聚合已定义的能力,不承载业务逻辑或状态
|
|
5
|
+
*/
|
|
6
|
+
export { getSession, loadSession } from './api';
|
|
7
|
+
export { getPlatform, getSelectedApp } from './app';
|
|
8
|
+
export { diffCommands } from './diff';
|
|
9
|
+
export { CLIProviderImpl } from './provider';
|
|
10
|
+
export type { BundleOptions, CLIProvider, CommandContext, CommandResult, Package, Platform, PublishOptions, Session, UploadOptions, Version, } from './types';
|
|
11
|
+
export { question } from './utils';
|
package/lib/exports.js
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* [INPUT]: 依赖 CLI 会话、应用、差分、发布 Provider、公共类型与交互工具模块
|
|
4
|
+
* [OUTPUT]: 对外提供包级公共 API,维持命令扩展和宿主集成所需的稳定导出面
|
|
5
|
+
* [POS]: CLI 公共出口,只聚合已定义的能力,不承载业务逻辑或状态
|
|
6
|
+
*/
|
|
7
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
|
+
exports.question = exports.CLIProviderImpl = exports.diffCommands = exports.getSelectedApp = exports.getPlatform = exports.loadSession = exports.getSession = void 0;
|
|
9
|
+
var api_1 = require("./api");
|
|
10
|
+
Object.defineProperty(exports, "getSession", { enumerable: true, get: function () { return api_1.getSession; } });
|
|
11
|
+
Object.defineProperty(exports, "loadSession", { enumerable: true, get: function () { return api_1.loadSession; } });
|
|
12
|
+
var app_1 = require("./app");
|
|
13
|
+
Object.defineProperty(exports, "getPlatform", { enumerable: true, get: function () { return app_1.getPlatform; } });
|
|
14
|
+
Object.defineProperty(exports, "getSelectedApp", { enumerable: true, get: function () { return app_1.getSelectedApp; } });
|
|
15
|
+
var diff_1 = require("./diff");
|
|
16
|
+
Object.defineProperty(exports, "diffCommands", { enumerable: true, get: function () { return diff_1.diffCommands; } });
|
|
17
|
+
var provider_1 = require("./provider");
|
|
18
|
+
Object.defineProperty(exports, "CLIProviderImpl", { enumerable: true, get: function () { return provider_1.CLIProviderImpl; } });
|
|
19
|
+
var utils_1 = require("./utils");
|
|
20
|
+
Object.defineProperty(exports, "question", { enumerable: true, get: function () { return utils_1.question; } });
|
package/lib/install.d.ts
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* [INPUT]: 依赖子进程、命令上下文、Pakta CLI 常量、本地化文案与包管理器运行时探测
|
|
3
|
+
* [OUTPUT]: 对外提供 installCommands,生成并执行依赖安装命令
|
|
4
|
+
* [POS]: CLI 依赖安装命令边界,校验包参数并委托当前包管理器,不直接修改发布模型
|
|
5
|
+
*/
|
|
6
|
+
import type { CommandContext } from './types';
|
|
7
|
+
export declare const installCommands: {
|
|
8
|
+
install: ({ args }: CommandContext) => Promise<void>;
|
|
9
|
+
};
|
package/lib/install.js
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* [INPUT]: 依赖子进程、命令上下文、Pakta CLI 常量、本地化文案与包管理器运行时探测
|
|
4
|
+
* [OUTPUT]: 对外提供 installCommands,生成并执行依赖安装命令
|
|
5
|
+
* [POS]: CLI 依赖安装命令边界,校验包参数并委托当前包管理器,不直接修改发布模型
|
|
6
|
+
*/
|
|
7
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
8
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
9
|
+
};
|
|
10
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
11
|
+
exports.installCommands = void 0;
|
|
12
|
+
const child_process_1 = require("child_process");
|
|
13
|
+
const path_1 = __importDefault(require("path"));
|
|
14
|
+
const constants_1 = require("./utils/constants");
|
|
15
|
+
const i18n_1 = require("./utils/i18n");
|
|
16
|
+
const runtime_1 = require("./utils/runtime");
|
|
17
|
+
// package names / version specs only — rejects shell metacharacters since
|
|
18
|
+
// Windows needs shell: true to run package manager .cmd shims
|
|
19
|
+
const SAFE_PACKAGE_ARG = /^[@a-z0-9^~._/-]+$/i;
|
|
20
|
+
exports.installCommands = {
|
|
21
|
+
install: async ({ args }) => {
|
|
22
|
+
if (args.length === 0) {
|
|
23
|
+
throw new Error((0, i18n_1.t)('installPackageRequired', { scriptName: constants_1.scriptName }));
|
|
24
|
+
}
|
|
25
|
+
for (const arg of args) {
|
|
26
|
+
if (!SAFE_PACKAGE_ARG.test(arg)) {
|
|
27
|
+
throw new Error((0, i18n_1.t)('installPackageRequired', { scriptName: constants_1.scriptName }));
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
const cliDir = path_1.default.resolve(__dirname, '..');
|
|
31
|
+
const installCommand = (0, runtime_1.getInstallCommand)(args, cliDir);
|
|
32
|
+
const result = (0, child_process_1.spawnSync)(installCommand.command, installCommand.args, {
|
|
33
|
+
cwd: cliDir,
|
|
34
|
+
stdio: 'inherit',
|
|
35
|
+
// package manager executables are .cmd shims on Windows
|
|
36
|
+
shell: process.platform === 'win32',
|
|
37
|
+
});
|
|
38
|
+
if (result.error) {
|
|
39
|
+
throw new Error((0, i18n_1.t)('installFailed', {
|
|
40
|
+
packages: args.join(' '),
|
|
41
|
+
error: result.error.message,
|
|
42
|
+
}));
|
|
43
|
+
}
|
|
44
|
+
if (result.status !== 0) {
|
|
45
|
+
throw new Error((0, i18n_1.t)('installFailed', {
|
|
46
|
+
packages: args.join(' '),
|
|
47
|
+
error: `${installCommand.command} exited with code ${result.status}`,
|
|
48
|
+
}));
|
|
49
|
+
}
|
|
50
|
+
},
|
|
51
|
+
};
|
|
@@ -0,0 +1,187 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* [INPUT]: 依赖 CLI i18n 键与英文产品术语
|
|
3
|
+
* [OUTPUT]: 对外提供 pakta 默认英文文案,含渠道自动创建、原生版本组重复与 JS 冲突提示
|
|
4
|
+
* [POS]: locales 英文资源事实源,与 zh.ts 保持键集合对称,不参与上传裁决
|
|
5
|
+
*/
|
|
6
|
+
declare const _default: {
|
|
7
|
+
addedToGitignore: string;
|
|
8
|
+
androidCrunchPngsWarning: string;
|
|
9
|
+
aabOpenApksFailed: string;
|
|
10
|
+
aabReadUniversalApkFailed: string;
|
|
11
|
+
aabUniversalApkNotFound: string;
|
|
12
|
+
aabBundletoolDownloadHint: string;
|
|
13
|
+
aabManifestNotFound: string;
|
|
14
|
+
aabParseResourcesWarning: string;
|
|
15
|
+
aabParseFailed: string;
|
|
16
|
+
aabParseManifestError: string;
|
|
17
|
+
aabParseResourcesError: string;
|
|
18
|
+
appId: string;
|
|
19
|
+
appIdMismatchApk: string;
|
|
20
|
+
appIdMismatchApp: string;
|
|
21
|
+
appIdMismatchIpa: string;
|
|
22
|
+
appKeyMismatchApk: string;
|
|
23
|
+
appKeyMismatchApp: string;
|
|
24
|
+
appKeyMismatchIpa: string;
|
|
25
|
+
appName: string;
|
|
26
|
+
appNameQuestion: string;
|
|
27
|
+
appPlatformMismatch: string;
|
|
28
|
+
appNotSelected: string;
|
|
29
|
+
appUploadSuccess: string;
|
|
30
|
+
autoUpdatePermission: string;
|
|
31
|
+
autoUpdateSuccess: string;
|
|
32
|
+
apkUploadSuccess: string;
|
|
33
|
+
boundTo: string;
|
|
34
|
+
buildTimeNotFound: string;
|
|
35
|
+
bundleCommandError: string;
|
|
36
|
+
bundleNotFound: string;
|
|
37
|
+
bundlingWithRN: string;
|
|
38
|
+
cancelled: string;
|
|
39
|
+
composingSourceMap: string;
|
|
40
|
+
copyingDebugId: string;
|
|
41
|
+
createAppSuccess: string;
|
|
42
|
+
channelAutoCreated: string;
|
|
43
|
+
deleteFile: string;
|
|
44
|
+
enterAppIdQuestion: string;
|
|
45
|
+
enterNativePackageId: string;
|
|
46
|
+
expiredStatus: string;
|
|
47
|
+
failedToParseUpdateJson: string;
|
|
48
|
+
fileGenerated: string;
|
|
49
|
+
fileSizeExceeded: string;
|
|
50
|
+
forceHermes: string;
|
|
51
|
+
hermesEnabledCompiling: string;
|
|
52
|
+
ipaUploadSuccess: string;
|
|
53
|
+
latestVersionTag: string;
|
|
54
|
+
lockBestPractice: string;
|
|
55
|
+
lockNotFound: string;
|
|
56
|
+
loggedOut: string;
|
|
57
|
+
loginExpired: string;
|
|
58
|
+
loginFirst: string;
|
|
59
|
+
multipleLocksFound: string;
|
|
60
|
+
nativePackageId: string;
|
|
61
|
+
nativeVersion: string;
|
|
62
|
+
nativeVersionNotFoundGte: string;
|
|
63
|
+
nativeVersionNotFoundLte: string;
|
|
64
|
+
nativeVersionNotFoundBetween: string;
|
|
65
|
+
conflictingPackageSelectors: string;
|
|
66
|
+
nativeVersionNotFoundMatch: string;
|
|
67
|
+
nativeVersionAlreadyRegistered: string;
|
|
68
|
+
nativeVersionBundleConflict: string;
|
|
69
|
+
nativePackageIdNotFound: string;
|
|
70
|
+
noPackagesFound: string;
|
|
71
|
+
offset: string;
|
|
72
|
+
operationComplete: string;
|
|
73
|
+
operationSuccess: string;
|
|
74
|
+
packageIdRequired: string;
|
|
75
|
+
standaloneTargetRequired: string;
|
|
76
|
+
packageUploadSuccess: string;
|
|
77
|
+
depsChangeWarningTitle: string;
|
|
78
|
+
depsChangeSummary: string;
|
|
79
|
+
depsChangeTargetPackage: string;
|
|
80
|
+
depsChangeDependencyHeader: string;
|
|
81
|
+
depsChangeVersionHeader: string;
|
|
82
|
+
depsChangeAddedLabel: string;
|
|
83
|
+
depsChangeRemovedLabel: string;
|
|
84
|
+
depsChangeChangedLabel: string;
|
|
85
|
+
depsChangeArrow: string;
|
|
86
|
+
depsChangeRiskWarning: string;
|
|
87
|
+
depsChangeFetchFailed: string;
|
|
88
|
+
depsChangeNonBlockingHint: string;
|
|
89
|
+
packing: string;
|
|
90
|
+
pausedStatus: string;
|
|
91
|
+
platform: string;
|
|
92
|
+
platformQuestion: string;
|
|
93
|
+
pluginDetectionError: string;
|
|
94
|
+
pluginDetected: string;
|
|
95
|
+
publishUsage: string;
|
|
96
|
+
sourceMapNotFound: string;
|
|
97
|
+
sourceMapMissingWarning: string;
|
|
98
|
+
sourceMapArchived: string;
|
|
99
|
+
sourceMapAlreadyArchivedWarning: string;
|
|
100
|
+
sourceMapUploadFailedWarning: string;
|
|
101
|
+
symbolicateUsage: string;
|
|
102
|
+
symbolicateVersionNotFound: string;
|
|
103
|
+
symbolicateNoSourceMap: string;
|
|
104
|
+
symbolicateDone: string;
|
|
105
|
+
rnuVersionNotFound: string;
|
|
106
|
+
rolloutConfigSet: string;
|
|
107
|
+
rolloutRangeError: string;
|
|
108
|
+
runningHermesc: string;
|
|
109
|
+
hermesSourcemapKept: string;
|
|
110
|
+
sentryReactNativeNotFound: string;
|
|
111
|
+
sentryCliNotFound: string;
|
|
112
|
+
sentryReleaseCreated: string;
|
|
113
|
+
totalApps: string;
|
|
114
|
+
totalPackages: string;
|
|
115
|
+
unsupportedPlatform: string;
|
|
116
|
+
uploadBundlePrompt: string;
|
|
117
|
+
uploadingSourcemap: string;
|
|
118
|
+
usageDiff: string;
|
|
119
|
+
usageParseApk: string;
|
|
120
|
+
usageParseAab: string;
|
|
121
|
+
usageExtractApk: string;
|
|
122
|
+
usageParseApp: string;
|
|
123
|
+
usageParseIpa: string;
|
|
124
|
+
usageUploadApk: string;
|
|
125
|
+
usageUploadAab: string;
|
|
126
|
+
usageUploadApp: string;
|
|
127
|
+
usageUploadIpa: string;
|
|
128
|
+
versionBind: string;
|
|
129
|
+
versionIdRequired: string;
|
|
130
|
+
welcomeMessage: string;
|
|
131
|
+
versionNameQuestion: string;
|
|
132
|
+
versionDescriptionQuestion: string;
|
|
133
|
+
versionMetaInfoQuestion: string;
|
|
134
|
+
updateNativePackageQuestion: string;
|
|
135
|
+
unnamed: string;
|
|
136
|
+
dryRun: string;
|
|
137
|
+
usingCustomVersion: string;
|
|
138
|
+
confirmDeletePackage: string;
|
|
139
|
+
deletePackageSuccess: string;
|
|
140
|
+
deletePackagesSuccess: string;
|
|
141
|
+
deletePackageError: string;
|
|
142
|
+
usageDeletePackage: string;
|
|
143
|
+
deleteVersionSuccess: string;
|
|
144
|
+
deleteVersionsSuccess: string;
|
|
145
|
+
deleteVersionError: string;
|
|
146
|
+
bundleFileNotFound: string;
|
|
147
|
+
diffPackageGenerated: string;
|
|
148
|
+
nodeHdiffpatchRequired: string;
|
|
149
|
+
hbcTransformRoundTripFailed: string;
|
|
150
|
+
hbcTransformNeedsPatch: string;
|
|
151
|
+
bundleStreamNeedsHdiffpatch: string;
|
|
152
|
+
apkExtracted: string;
|
|
153
|
+
composeSourceMapsNotFound: string;
|
|
154
|
+
installPackageRequired: string;
|
|
155
|
+
installFailed: string;
|
|
156
|
+
proxyNetworkError: string;
|
|
157
|
+
proxyNetworkErrorTips: string;
|
|
158
|
+
invalidId: string;
|
|
159
|
+
outputPathRequired: string;
|
|
160
|
+
unsupportedFileType: string;
|
|
161
|
+
failedToLoadSession: string;
|
|
162
|
+
appIdRequired: string;
|
|
163
|
+
unknownCommand: string;
|
|
164
|
+
unsupportedPlatformForHermes: string;
|
|
165
|
+
invalidManifest: string;
|
|
166
|
+
failedToResolveResource: string;
|
|
167
|
+
hermesBaseNone: string;
|
|
168
|
+
hermesBaseUsing: string;
|
|
169
|
+
hermesBaseDownloading: string;
|
|
170
|
+
hermesBaseRangeFetched: string;
|
|
171
|
+
hermesBaseRangeFallback: string;
|
|
172
|
+
hermesBaseCompileFailed: string;
|
|
173
|
+
hermesBaseCompileFailedLog: string;
|
|
174
|
+
hermesBasePlainCompileFailed: string;
|
|
175
|
+
hermesBaseVerified: string;
|
|
176
|
+
hermesBaseVerifyFailed: string;
|
|
177
|
+
hermesBaseVerifyDumpFailed: string;
|
|
178
|
+
hermesBaseVerifyDumpsWritten: string;
|
|
179
|
+
cacheCleaned: string;
|
|
180
|
+
cacheStats: string;
|
|
181
|
+
loginCredentialsRequired: string;
|
|
182
|
+
bundleUnexpectedArgs: string;
|
|
183
|
+
unsafeIntermediateDir: string;
|
|
184
|
+
appKeyMissing: string;
|
|
185
|
+
errorStackHint: string;
|
|
186
|
+
};
|
|
187
|
+
export default _default;
|
|
@@ -0,0 +1,194 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
/**
|
|
4
|
+
* [INPUT]: 依赖 CLI i18n 键与英文产品术语
|
|
5
|
+
* [OUTPUT]: 对外提供 pakta 默认英文文案,含渠道自动创建、原生版本组重复与 JS 冲突提示
|
|
6
|
+
* [POS]: locales 英文资源事实源,与 zh.ts 保持键集合对称,不参与上传裁决
|
|
7
|
+
*/
|
|
8
|
+
exports.default = {
|
|
9
|
+
addedToGitignore: 'Added {{line}} to .gitignore',
|
|
10
|
+
androidCrunchPngsWarning: 'The crunchPngs option of android seems not disabled (Please ignore this warning if already disabled), which may cause abnormal consumption of mobile network traffic. Please refer to https://pakta.dev/docs/getting-started#disable-crunchpngs-on-android \n',
|
|
11
|
+
aabOpenApksFailed: 'Failed to open generated .apks file',
|
|
12
|
+
aabReadUniversalApkFailed: 'Failed to read universal.apk',
|
|
13
|
+
aabUniversalApkNotFound: 'universal.apk not found in generated .apks',
|
|
14
|
+
aabBundletoolDownloadHint: 'bundletool not found. Downloading node-bundletool via npx (first run may take a while).',
|
|
15
|
+
aabManifestNotFound: "AndroidManifest.xml can't be found in AAB base/manifest/",
|
|
16
|
+
aabParseResourcesWarning: '[Warning] Failed to parse resources.arsc: {{error}}',
|
|
17
|
+
aabParseFailed: 'Failed to parse AAB: {{error}}',
|
|
18
|
+
aabParseManifestError: 'Parse AndroidManifest.xml error: {{error}}',
|
|
19
|
+
aabParseResourcesError: 'Parser resources.arsc error: {{error}}',
|
|
20
|
+
appId: 'App ID',
|
|
21
|
+
appIdMismatchApk: 'App ID mismatch! Current APK: {{appIdInPkg}}, current {{- source}}: {{appId}}',
|
|
22
|
+
appIdMismatchApp: 'App ID mismatch! Current APP: {{appIdInPkg}}, current {{- source}}: {{appId}}',
|
|
23
|
+
appIdMismatchIpa: 'App ID mismatch! Current IPA: {{appIdInPkg}}, current {{- source}}: {{appId}}',
|
|
24
|
+
appKeyMismatchApk: 'App Key mismatch! Current APK: {{appKeyInPkg}}, current {{- source}}: {{appKey}}',
|
|
25
|
+
appKeyMismatchApp: 'App Key mismatch! Current APP: {{appKeyInPkg}}, current {{- source}}: {{appKey}}',
|
|
26
|
+
appKeyMismatchIpa: 'App Key mismatch! Current IPA: {{appKeyInPkg}}, current {{- source}}: {{appKey}}',
|
|
27
|
+
appName: 'App Name',
|
|
28
|
+
appNameQuestion: 'App Name:',
|
|
29
|
+
appPlatformMismatch: 'App {{appId}} is a {{appPlatform}} app, but this command targets {{platform}}',
|
|
30
|
+
appNotSelected: 'App not selected. run `pakta selectApp --platform {{platform}}` first!',
|
|
31
|
+
appUploadSuccess: 'Successfully uploaded APP native package (id: {{id}}, version: {{version}}, buildTime: {{buildTime}})',
|
|
32
|
+
autoUpdatePermission: 'CLI auto-update was skipped because the global package directory is not writable. Fix the package-manager prefix permissions, then run: {{- command}}',
|
|
33
|
+
autoUpdateSuccess: 'CLI was automatically updated in the background: {{from}} -> {{to}}',
|
|
34
|
+
apkUploadSuccess: 'Successfully uploaded APK native package (id: {{id}}, version: {{version}}, buildTime: {{buildTime}})',
|
|
35
|
+
boundTo: ', bound to: {{name}} ({{id}})',
|
|
36
|
+
buildTimeNotFound: 'Cannot get the build timestamp of this package. Please update `rn-update` to the latest version and re-package and upload.',
|
|
37
|
+
bundleCommandError: '"react-native bundle" command exited with code {{code}}.',
|
|
38
|
+
bundleNotFound: 'Bundle file not found. Please ensure that this {{packageType}} is a release version and the bundle file name is the default `{{entryFile}}`',
|
|
39
|
+
bundlingWithRN: 'Bundling with react-native: {{version}}',
|
|
40
|
+
cancelled: 'Cancelled',
|
|
41
|
+
composingSourceMap: 'Composing source map',
|
|
42
|
+
copyingDebugId: 'Copying debugid',
|
|
43
|
+
createAppSuccess: 'App created successfully (id: {{id}})',
|
|
44
|
+
channelAutoCreated: 'Channel {{channel}} was missing and has been created',
|
|
45
|
+
deleteFile: 'Delete {{- file}}',
|
|
46
|
+
enterAppIdQuestion: 'Enter AppId:',
|
|
47
|
+
enterNativePackageId: 'Enter native package ID:',
|
|
48
|
+
expiredStatus: '(Expired)',
|
|
49
|
+
failedToParseUpdateJson: 'Failed to parse file `{{- configPath}}`. Try to remove it manually.',
|
|
50
|
+
fileGenerated: '{{- file}} generated.',
|
|
51
|
+
fileSizeExceeded: 'This file size is {{fileSize}} , exceeding the current quota {{maxSize}} . You may consider upgrading to a higher plan to increase this quota. Details can be found at: {{- pricingPageUrl}}',
|
|
52
|
+
forceHermes: 'Forcing Hermes enabled for this build',
|
|
53
|
+
hermesEnabledCompiling: 'Hermes enabled, now compiling to hermes bytecode:\n',
|
|
54
|
+
ipaUploadSuccess: 'Successfully uploaded IPA native package (id: {{id}}, version: {{version}}, buildTime: {{buildTime}})',
|
|
55
|
+
latestVersionTag: '(latest: {{version}})',
|
|
56
|
+
lockBestPractice: `
|
|
57
|
+
Best practices for lock files:
|
|
58
|
+
1. All members of the development team should use the same package manager to maintain a single lock file.
|
|
59
|
+
2. Add the lock file to version control (but do not commit multiple lock files of different formats).
|
|
60
|
+
3. Pay attention to changes in the lock file during code review.
|
|
61
|
+
This can reduce the risk of inconsistent dependencies and supply chain attacks.
|
|
62
|
+
`,
|
|
63
|
+
lockNotFound: 'No lock file detected, which may cause inconsistent dependencies and hot-updating issues.',
|
|
64
|
+
loggedOut: 'Logged out',
|
|
65
|
+
loginExpired: 'Login information has expired. Please use `pakta login` command to re-login',
|
|
66
|
+
loginFirst: 'Not logged in.\nPlease run `pakta login` in the project directory to login.',
|
|
67
|
+
multipleLocksFound: 'Multiple lock files detected ({{- lockFiles}}), which may cause inconsistent dependencies and hot-updating issues.',
|
|
68
|
+
nativePackageId: 'Native Package ID',
|
|
69
|
+
nativeVersion: 'Native Version',
|
|
70
|
+
nativeVersionNotFoundGte: 'No native version found >= {{version}}',
|
|
71
|
+
nativeVersionNotFoundLte: 'No native version found <= {{version}}',
|
|
72
|
+
nativeVersionNotFoundBetween: 'No native version found between {{min}} and {{max}}',
|
|
73
|
+
conflictingPackageSelectors: 'Only one of packageId / packageVersion / packageVersionRange / minPackageVersion+maxPackageVersion can be used at a time',
|
|
74
|
+
nativeVersionNotFoundMatch: 'No matching native version found: {{version}}',
|
|
75
|
+
nativeVersionAlreadyRegistered: 'Native package {{version}} is already registered with identical embedded JS; skipping duplicate upload (id: {{id}})',
|
|
76
|
+
nativeVersionBundleConflict: 'Native package {{version}} is already registered with different embedded JS. Increment the native version before uploading, or incremental update matching will become unreliable',
|
|
77
|
+
nativePackageIdNotFound: 'No native package id found: {{id}}',
|
|
78
|
+
noPackagesFound: 'No packages found. (appId: {{appId}})',
|
|
79
|
+
offset: 'Offset {{offset}}',
|
|
80
|
+
operationComplete: 'Operation complete, bound to {{count}} native versions',
|
|
81
|
+
operationSuccess: 'Operation successful',
|
|
82
|
+
packageIdRequired: 'Please provide packageId or packageVersion parameter',
|
|
83
|
+
standaloneTargetRequired: 'Standalone non-interactive publishing requires --targets, --packageId, or --packageVersion.',
|
|
84
|
+
packageUploadSuccess: 'Successfully uploaded new hot update package (id: {{id}})',
|
|
85
|
+
depsChangeWarningTitle: 'Dependency changes detected',
|
|
86
|
+
depsChangeSummary: 'Dependency changes: added {{added}}, removed {{removed}}, changed {{changed}}.',
|
|
87
|
+
depsChangeTargetPackage: 'Target native package: {{packageName}} (id: {{packageId}})',
|
|
88
|
+
depsChangeDependencyHeader: 'Dependency',
|
|
89
|
+
depsChangeVersionHeader: 'Version change',
|
|
90
|
+
depsChangeAddedLabel: 'Added',
|
|
91
|
+
depsChangeRemovedLabel: 'Removed',
|
|
92
|
+
depsChangeChangedLabel: 'Changed',
|
|
93
|
+
depsChangeArrow: '->',
|
|
94
|
+
depsChangeRiskWarning: 'Warning: if changed dependencies are pure JS modules, impact is usually low; if native code is newly introduced or changed, OTA update may cause abnormal behavior or even crashes. Test thoroughly before production release.',
|
|
95
|
+
depsChangeFetchFailed: 'Failed to fetch OTA dependency info: {{error}}',
|
|
96
|
+
depsChangeNonBlockingHint: 'This is only a dependency change warning and will not block publishing.',
|
|
97
|
+
packing: 'Packing',
|
|
98
|
+
pausedStatus: '(Paused)',
|
|
99
|
+
platform: 'Platform',
|
|
100
|
+
platformQuestion: 'Platform(ios/android/harmony):',
|
|
101
|
+
pluginDetectionError: 'error while detecting {{name}} plugin: {{error}}',
|
|
102
|
+
pluginDetected: 'detected {{name}} plugin',
|
|
103
|
+
publishUsage: 'Usage: pakta publish <ppk file> --platform ios|android|harmony',
|
|
104
|
+
sourceMapNotFound: 'Source map not found: {{path}}',
|
|
105
|
+
sourceMapMissingWarning: 'No source map was archived with this version: crashes cannot be symbolicated later. Bundle with the default --sourcemap, or pass --sourcemap <file> to publish.',
|
|
106
|
+
sourceMapArchived: 'Source map archived with version {{id}}',
|
|
107
|
+
sourceMapAlreadyArchivedWarning: 'This update hash is already registered; the new source map was not attached.',
|
|
108
|
+
sourceMapUploadFailedWarning: 'Source map upload failed ({{error}}); publishing without an archived map. Upgrade the update server to archive source maps.',
|
|
109
|
+
symbolicateUsage: 'Usage: pakta symbolicate <stack file | -> --hash <updateHash> [--platform ios|android|harmony] [--output <file>]',
|
|
110
|
+
symbolicateVersionNotFound: 'No published version with hash {{hash}} found for this app',
|
|
111
|
+
symbolicateNoSourceMap: 'Version {{id}} was published without a source map; nothing to symbolicate against',
|
|
112
|
+
symbolicateDone: 'Symbolicated {{count}} frame(s) against version {{id}} ({{hash}})',
|
|
113
|
+
rnuVersionNotFound: 'rn-update: Cannot get the version number. Please run the command in the project directory',
|
|
114
|
+
rolloutConfigSet: 'Set {{rollout}}% rollout for OTA update {{version}} on native version(s) {{versions}}',
|
|
115
|
+
rolloutRangeError: 'rollout must be an integer between 1-100',
|
|
116
|
+
runningHermesc: 'Running hermesc: {{- command}} {{- args}}',
|
|
117
|
+
hermesSourcemapKept: 'Debug info is stripped from the bytecode (like RN release builds); the Hermes sourcemap is kept at {{- file}} for symbolicating crash stacks later.',
|
|
118
|
+
sentryReactNativeNotFound: 'Cannot find @sentry/react-native, please make sure it is properly installed',
|
|
119
|
+
sentryCliNotFound: 'Cannot find Sentry CLI tool, please make sure @sentry/cli is properly installed',
|
|
120
|
+
sentryReleaseCreated: 'Sentry release created for version: {{version}}',
|
|
121
|
+
totalApps: 'Total {{count}} {{platform}} apps',
|
|
122
|
+
totalPackages: 'Total {{count}} packages',
|
|
123
|
+
unsupportedPlatform: 'Unsupported platform `{{platform}}`',
|
|
124
|
+
uploadBundlePrompt: 'Upload this bundle now?(Y/N)',
|
|
125
|
+
uploadingSourcemap: 'Uploading sourcemap',
|
|
126
|
+
usageDiff: 'Usage: pakta {{command}} <origin> <next>',
|
|
127
|
+
usageParseApk: 'Usage: pakta parseApk <apk file>',
|
|
128
|
+
usageParseAab: 'Usage: pakta parseAab <aab file>',
|
|
129
|
+
usageExtractApk: 'Usage: pakta extractApk <aab file> [--output <apk file>] [--includeAllSplits] [--splits <split names>]',
|
|
130
|
+
usageParseApp: 'Usage: pakta parseApp <app file>',
|
|
131
|
+
usageParseIpa: 'Usage: pakta parseIpa <ipa file>',
|
|
132
|
+
usageUploadApk: 'Usage: pakta uploadApk <apk file>',
|
|
133
|
+
usageUploadAab: 'Usage: pakta uploadAab <aab file> [--includeAllSplits] [--splits <split names>]',
|
|
134
|
+
usageUploadApp: 'Usage: pakta uploadApp <app file>',
|
|
135
|
+
usageUploadIpa: 'Usage: pakta uploadIpa <ipa file>',
|
|
136
|
+
versionBind: 'Bound hot update {{version}} to native version {{nativeVersion}} (id: {{id}})',
|
|
137
|
+
versionIdRequired: 'Please provide versionId in non-interactive mode.',
|
|
138
|
+
welcomeMessage: 'Welcome to Pakta hot update service, {{name}}.',
|
|
139
|
+
versionNameQuestion: 'Enter OTA update name:',
|
|
140
|
+
versionDescriptionQuestion: 'Enter OTA update description:',
|
|
141
|
+
versionMetaInfoQuestion: 'Enter custom meta info:',
|
|
142
|
+
updateNativePackageQuestion: 'Bind to native package now?(Y/N)',
|
|
143
|
+
unnamed: '(Unnamed)',
|
|
144
|
+
dryRun: 'Below is the dry-run result, no actual operation will be performed:',
|
|
145
|
+
usingCustomVersion: 'Using custom version: {{version}}',
|
|
146
|
+
confirmDeletePackage: 'Confirm delete native package {{packageId}}? This operation cannot be undone (Y/N):',
|
|
147
|
+
deletePackageSuccess: 'Native package {{packageId}} deleted successfully',
|
|
148
|
+
deletePackagesSuccess: 'Deleted {{count}} native packages: {{packageIds}}',
|
|
149
|
+
deletePackageError: 'Failed to delete native package {{packageId}}: {{error}}',
|
|
150
|
+
usageDeletePackage: 'Usage: pakta deletePackage [packageId] --packageIds [packageIds] --appId [appId]',
|
|
151
|
+
deleteVersionSuccess: 'Version {{versionId}} deleted successfully',
|
|
152
|
+
deleteVersionsSuccess: 'Deleted {{count}} OTA versions: {{versionIds}}',
|
|
153
|
+
deleteVersionError: 'Failed to delete version {{versionId}}: {{error}}',
|
|
154
|
+
bundleFileNotFound: 'Bundle file not found! Please use default bundle file name and path.',
|
|
155
|
+
diffPackageGenerated: '{{- output}} generated.',
|
|
156
|
+
nodeHdiffpatchRequired: 'This function needs "node-hdiffpatch". Please run "{{scriptName}} install node-hdiffpatch" to install',
|
|
157
|
+
hbcTransformRoundTripFailed: 'HBC transform round-trip verification failed; falling back to plain diff.',
|
|
158
|
+
hbcTransformNeedsPatch: 'hbcTransform requires patch support from node-hdiffpatch; option ignored.',
|
|
159
|
+
bundleStreamNeedsHdiffpatch: 'bundleStreamThreshold requires diffStream/patchStream from node-hdiffpatch; option ignored.',
|
|
160
|
+
apkExtracted: 'APK extracted to {{output}}',
|
|
161
|
+
composeSourceMapsNotFound: 'Cannot find react-native/scripts/compose-source-maps.js, skipping hermes sourcemap composing. The uploaded sourcemap may not match the compiled bundle.',
|
|
162
|
+
installPackageRequired: 'Please specify the package to install, e.g. "{{scriptName}} install node-hdiffpatch"',
|
|
163
|
+
installFailed: 'Failed to install {{packages}}: {{error}}',
|
|
164
|
+
proxyNetworkError: 'Network error — likely caused by a proxy/VPN. Please try disabling your proxy and retry.',
|
|
165
|
+
proxyNetworkErrorTips: 'Common fixes:\n1. Disable system proxy or VPN\n2. Check HTTP_PROXY / HTTPS_PROXY environment variables\n3. Check proxy settings in .npmrc',
|
|
166
|
+
invalidId: 'Invalid id: {{id}}',
|
|
167
|
+
outputPathRequired: 'Output path is required.',
|
|
168
|
+
unsupportedFileType: 'Unsupported file type: {{fileType}}',
|
|
169
|
+
failedToLoadSession: 'Failed to load session',
|
|
170
|
+
appIdRequired: 'appId is required',
|
|
171
|
+
unknownCommand: 'Unknown command: {{command}}',
|
|
172
|
+
unsupportedPlatformForHermes: 'Unsupported platform for Hermes: {{platform}}',
|
|
173
|
+
invalidManifest: 'Invalid manifest',
|
|
174
|
+
failedToResolveResource: 'Failed to resolve resource: {{error}}',
|
|
175
|
+
hermesBaseNone: 'Hermes base: none ({{- reason}}); compiling without -base-bytecode',
|
|
176
|
+
hermesBaseUsing: 'Hermes base: {{- source}} (HBC v{{version}})',
|
|
177
|
+
hermesBaseDownloading: 'Hermes base: downloading {{- url}}',
|
|
178
|
+
hermesBaseRangeFetched: 'Hermes base: fetched only the bundle via HTTP Range ({{fetchedKb}} KB of {{totalKb}} KB)',
|
|
179
|
+
hermesBaseRangeFallback: 'Hermes base: partial download unavailable ({{- reason}}); downloading the whole package',
|
|
180
|
+
hermesBaseCompileFailed: 'Hermes base compile failed ({{- reason}}); retrying without -base-bytecode',
|
|
181
|
+
hermesBaseCompileFailedLog: 'Hermes base: full compiler output written to {{- file}}',
|
|
182
|
+
hermesBasePlainCompileFailed: 'Hermes base: the plain compile used for verification failed ({{- reason}}); dropping the base and compiling again without it',
|
|
183
|
+
hermesBaseVerified: 'Hermes base: bytecode verified equivalent to a plain compile ({{functions}} functions)',
|
|
184
|
+
hermesBaseVerifyFailed: 'Hermes base: bytecode differs from a plain compile ({{- detail}}); dropping the base',
|
|
185
|
+
hermesBaseVerifyDumpFailed: 'Hermes base: could not compare the bytecode ({{- detail}}); dropping the base',
|
|
186
|
+
hermesBaseVerifyDumpsWritten: 'Hermes base: disassemblies written to {{- withBase}} and {{- plain}}',
|
|
187
|
+
cacheCleaned: 'Removed {{count}} cached bundle(s)',
|
|
188
|
+
cacheStats: 'Bundle cache: {{- dir}} — {{files}} file(s), {{mb}} MB',
|
|
189
|
+
loginCredentialsRequired: 'Email and password are required. Usage: {{scriptName}} login <email> <password>',
|
|
190
|
+
bundleUnexpectedArgs: 'bundle takes no positional arguments, got: {{- args}}. Boolean flags take no value; switch one off with --no-<flag> (e.g. --no-sourcemap).',
|
|
191
|
+
unsafeIntermediateDir: 'Refusing to empty {{- dir}} as the intermediate directory: it resolves to a protected or symbolic-link location. Point --intermediaDir at a dedicated build directory.',
|
|
192
|
+
appKeyMissing: 'App {{appId}} did not return a valid app key.',
|
|
193
|
+
errorStackHint: '(set RNU_DEBUG=1 to print the stack trace)',
|
|
194
|
+
};
|
|
@@ -0,0 +1,187 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* [INPUT]: 依赖 CLI i18n 键与中文产品术语
|
|
3
|
+
* [OUTPUT]: 对外提供 pakta 默认中文文案,含渠道自动创建、原生版本组重复与 JS 冲突提示
|
|
4
|
+
* [POS]: locales 中文资源事实源,只表达交互语义,不参与上传裁决
|
|
5
|
+
*/
|
|
6
|
+
declare const _default: {
|
|
7
|
+
addedToGitignore: string;
|
|
8
|
+
androidCrunchPngsWarning: string;
|
|
9
|
+
aabOpenApksFailed: string;
|
|
10
|
+
aabReadUniversalApkFailed: string;
|
|
11
|
+
aabUniversalApkNotFound: string;
|
|
12
|
+
aabBundletoolDownloadHint: string;
|
|
13
|
+
aabManifestNotFound: string;
|
|
14
|
+
aabParseResourcesWarning: string;
|
|
15
|
+
aabParseFailed: string;
|
|
16
|
+
aabParseManifestError: string;
|
|
17
|
+
aabParseResourcesError: string;
|
|
18
|
+
appId: string;
|
|
19
|
+
appIdMismatchApk: string;
|
|
20
|
+
appIdMismatchApp: string;
|
|
21
|
+
appIdMismatchIpa: string;
|
|
22
|
+
appKeyMismatchApk: string;
|
|
23
|
+
appKeyMismatchApp: string;
|
|
24
|
+
appKeyMismatchIpa: string;
|
|
25
|
+
appName: string;
|
|
26
|
+
appNameQuestion: string;
|
|
27
|
+
appPlatformMismatch: string;
|
|
28
|
+
appNotSelected: string;
|
|
29
|
+
appUploadSuccess: string;
|
|
30
|
+
autoUpdatePermission: string;
|
|
31
|
+
autoUpdateSuccess: string;
|
|
32
|
+
apkUploadSuccess: string;
|
|
33
|
+
boundTo: string;
|
|
34
|
+
buildTimeNotFound: string;
|
|
35
|
+
bundleCommandError: string;
|
|
36
|
+
bundleNotFound: string;
|
|
37
|
+
bundlingWithRN: string;
|
|
38
|
+
cancelled: string;
|
|
39
|
+
composingSourceMap: string;
|
|
40
|
+
copyingDebugId: string;
|
|
41
|
+
createAppSuccess: string;
|
|
42
|
+
channelAutoCreated: string;
|
|
43
|
+
deleteFile: string;
|
|
44
|
+
enterAppIdQuestion: string;
|
|
45
|
+
enterNativePackageId: string;
|
|
46
|
+
expiredStatus: string;
|
|
47
|
+
failedToParseUpdateJson: string;
|
|
48
|
+
fileGenerated: string;
|
|
49
|
+
fileSizeExceeded: string;
|
|
50
|
+
forceHermes: string;
|
|
51
|
+
hermesEnabledCompiling: string;
|
|
52
|
+
ipaUploadSuccess: string;
|
|
53
|
+
latestVersionTag: string;
|
|
54
|
+
lockBestPractice: string;
|
|
55
|
+
lockNotFound: string;
|
|
56
|
+
loggedOut: string;
|
|
57
|
+
loginExpired: string;
|
|
58
|
+
loginFirst: string;
|
|
59
|
+
multipleLocksFound: string;
|
|
60
|
+
nativePackageId: string;
|
|
61
|
+
nativeVersion: string;
|
|
62
|
+
nativeVersionNotFoundGte: string;
|
|
63
|
+
nativeVersionNotFoundLte: string;
|
|
64
|
+
nativeVersionNotFoundBetween: string;
|
|
65
|
+
conflictingPackageSelectors: string;
|
|
66
|
+
nativeVersionNotFoundMatch: string;
|
|
67
|
+
nativeVersionAlreadyRegistered: string;
|
|
68
|
+
nativeVersionBundleConflict: string;
|
|
69
|
+
nativePackageIdNotFound: string;
|
|
70
|
+
noPackagesFound: string;
|
|
71
|
+
offset: string;
|
|
72
|
+
operationComplete: string;
|
|
73
|
+
operationSuccess: string;
|
|
74
|
+
packageIdRequired: string;
|
|
75
|
+
standaloneTargetRequired: string;
|
|
76
|
+
packageUploadSuccess: string;
|
|
77
|
+
depsChangeWarningTitle: string;
|
|
78
|
+
depsChangeSummary: string;
|
|
79
|
+
depsChangeTargetPackage: string;
|
|
80
|
+
depsChangeDependencyHeader: string;
|
|
81
|
+
depsChangeVersionHeader: string;
|
|
82
|
+
depsChangeAddedLabel: string;
|
|
83
|
+
depsChangeRemovedLabel: string;
|
|
84
|
+
depsChangeChangedLabel: string;
|
|
85
|
+
depsChangeArrow: string;
|
|
86
|
+
depsChangeRiskWarning: string;
|
|
87
|
+
depsChangeFetchFailed: string;
|
|
88
|
+
depsChangeNonBlockingHint: string;
|
|
89
|
+
packing: string;
|
|
90
|
+
pausedStatus: string;
|
|
91
|
+
platform: string;
|
|
92
|
+
platformQuestion: string;
|
|
93
|
+
pluginDetectionError: string;
|
|
94
|
+
pluginDetected: string;
|
|
95
|
+
sourceMapNotFound: string;
|
|
96
|
+
sourceMapMissingWarning: string;
|
|
97
|
+
sourceMapArchived: string;
|
|
98
|
+
sourceMapAlreadyArchivedWarning: string;
|
|
99
|
+
sourceMapUploadFailedWarning: string;
|
|
100
|
+
symbolicateUsage: string;
|
|
101
|
+
symbolicateVersionNotFound: string;
|
|
102
|
+
symbolicateNoSourceMap: string;
|
|
103
|
+
symbolicateDone: string;
|
|
104
|
+
publishUsage: string;
|
|
105
|
+
rnuVersionNotFound: string;
|
|
106
|
+
rolloutConfigSet: string;
|
|
107
|
+
rolloutRangeError: string;
|
|
108
|
+
runningHermesc: string;
|
|
109
|
+
hermesSourcemapKept: string;
|
|
110
|
+
sentryReactNativeNotFound: string;
|
|
111
|
+
sentryCliNotFound: string;
|
|
112
|
+
sentryReleaseCreated: string;
|
|
113
|
+
totalApps: string;
|
|
114
|
+
totalPackages: string;
|
|
115
|
+
unsupportedPlatform: string;
|
|
116
|
+
uploadBundlePrompt: string;
|
|
117
|
+
uploadingSourcemap: string;
|
|
118
|
+
usageDiff: string;
|
|
119
|
+
usageParseApk: string;
|
|
120
|
+
usageParseAab: string;
|
|
121
|
+
usageExtractApk: string;
|
|
122
|
+
usageParseApp: string;
|
|
123
|
+
usageParseIpa: string;
|
|
124
|
+
usageUploadApk: string;
|
|
125
|
+
usageUploadAab: string;
|
|
126
|
+
usageUploadApp: string;
|
|
127
|
+
usageUploadIpa: string;
|
|
128
|
+
versionBind: string;
|
|
129
|
+
versionIdRequired: string;
|
|
130
|
+
welcomeMessage: string;
|
|
131
|
+
versionNameQuestion: string;
|
|
132
|
+
versionDescriptionQuestion: string;
|
|
133
|
+
versionMetaInfoQuestion: string;
|
|
134
|
+
updateNativePackageQuestion: string;
|
|
135
|
+
unnamed: string;
|
|
136
|
+
dryRun: string;
|
|
137
|
+
usingCustomVersion: string;
|
|
138
|
+
confirmDeletePackage: string;
|
|
139
|
+
deletePackageSuccess: string;
|
|
140
|
+
deletePackagesSuccess: string;
|
|
141
|
+
deletePackageError: string;
|
|
142
|
+
usageDeletePackage: string;
|
|
143
|
+
deleteVersionSuccess: string;
|
|
144
|
+
deleteVersionsSuccess: string;
|
|
145
|
+
deleteVersionError: string;
|
|
146
|
+
bundleFileNotFound: string;
|
|
147
|
+
diffPackageGenerated: string;
|
|
148
|
+
nodeHdiffpatchRequired: string;
|
|
149
|
+
hbcTransformRoundTripFailed: string;
|
|
150
|
+
hbcTransformNeedsPatch: string;
|
|
151
|
+
bundleStreamNeedsHdiffpatch: string;
|
|
152
|
+
apkExtracted: string;
|
|
153
|
+
composeSourceMapsNotFound: string;
|
|
154
|
+
installPackageRequired: string;
|
|
155
|
+
installFailed: string;
|
|
156
|
+
proxyNetworkError: string;
|
|
157
|
+
proxyNetworkErrorTips: string;
|
|
158
|
+
invalidId: string;
|
|
159
|
+
outputPathRequired: string;
|
|
160
|
+
unsupportedFileType: string;
|
|
161
|
+
failedToLoadSession: string;
|
|
162
|
+
appIdRequired: string;
|
|
163
|
+
unknownCommand: string;
|
|
164
|
+
unsupportedPlatformForHermes: string;
|
|
165
|
+
invalidManifest: string;
|
|
166
|
+
failedToResolveResource: string;
|
|
167
|
+
hermesBaseNone: string;
|
|
168
|
+
hermesBaseUsing: string;
|
|
169
|
+
hermesBaseDownloading: string;
|
|
170
|
+
hermesBaseRangeFetched: string;
|
|
171
|
+
hermesBaseRangeFallback: string;
|
|
172
|
+
hermesBaseCompileFailed: string;
|
|
173
|
+
hermesBaseCompileFailedLog: string;
|
|
174
|
+
hermesBasePlainCompileFailed: string;
|
|
175
|
+
hermesBaseVerified: string;
|
|
176
|
+
hermesBaseVerifyFailed: string;
|
|
177
|
+
hermesBaseVerifyDumpFailed: string;
|
|
178
|
+
hermesBaseVerifyDumpsWritten: string;
|
|
179
|
+
cacheCleaned: string;
|
|
180
|
+
cacheStats: string;
|
|
181
|
+
loginCredentialsRequired: string;
|
|
182
|
+
bundleUnexpectedArgs: string;
|
|
183
|
+
unsafeIntermediateDir: string;
|
|
184
|
+
appKeyMissing: string;
|
|
185
|
+
errorStackHint: string;
|
|
186
|
+
};
|
|
187
|
+
export default _default;
|