appship-cli 0.1.1 → 0.1.2
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/dist/{chunk-WWHJBKI3.js → chunk-AZTXBAUU.js} +3 -3
- package/dist/{chunk-TLOV7VBN.js → chunk-D5IVOO3T.js} +1 -1
- package/dist/{chunk-CVYD5FVI.js → chunk-XGVCTALD.js} +1 -1
- package/dist/{flutter-D6ZOT4JJ.js → flutter-UIBWJIKY.js} +2 -2
- package/dist/index.js +6 -4
- package/dist/{native-RCWBM6UF.js → native-WXU3IQKR.js} +2 -2
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
import {
|
|
3
3
|
APPSHIP_VERSION
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-XGVCTALD.js";
|
|
5
5
|
|
|
6
6
|
// src/core/project/flutter.ts
|
|
7
7
|
import { readFile as readFile4 } from "fs/promises";
|
|
@@ -32,11 +32,11 @@ async function detectProjectType(projectRoot) {
|
|
|
32
32
|
if (pkg && "react-native" in deps) {
|
|
33
33
|
return "react-native";
|
|
34
34
|
}
|
|
35
|
-
const { readPubspec: readPubspec2, isFlutterPubspec: isFlutterPubspec2 } = await import("./flutter-
|
|
35
|
+
const { readPubspec: readPubspec2, isFlutterPubspec: isFlutterPubspec2 } = await import("./flutter-UIBWJIKY.js");
|
|
36
36
|
if (isFlutterPubspec2(await readPubspec2(projectRoot))) {
|
|
37
37
|
return "flutter";
|
|
38
38
|
}
|
|
39
|
-
const { findRootPbxproj, hasNativeAndroidLayout } = await import("./native-
|
|
39
|
+
const { findRootPbxproj, hasNativeAndroidLayout } = await import("./native-WXU3IQKR.js");
|
|
40
40
|
const { existsSync: existsSync2 } = await import("fs");
|
|
41
41
|
if (hasNativeAndroidLayout(projectRoot, existsSync2)) {
|
|
42
42
|
return "native-android";
|
package/dist/index.js
CHANGED
|
@@ -9,12 +9,14 @@ import {
|
|
|
9
9
|
readExpoConfig,
|
|
10
10
|
readPackageJson,
|
|
11
11
|
readPubspec
|
|
12
|
-
} from "./chunk-
|
|
12
|
+
} from "./chunk-AZTXBAUU.js";
|
|
13
13
|
import {
|
|
14
14
|
analyzeNativeAndroidProject,
|
|
15
15
|
analyzeNativeIosProject
|
|
16
|
-
} from "./chunk-
|
|
17
|
-
import
|
|
16
|
+
} from "./chunk-D5IVOO3T.js";
|
|
17
|
+
import {
|
|
18
|
+
APPSHIP_VERSION
|
|
19
|
+
} from "./chunk-XGVCTALD.js";
|
|
18
20
|
import {
|
|
19
21
|
UploadError,
|
|
20
22
|
assertUploadLane,
|
|
@@ -3683,7 +3685,7 @@ var rulesCommand = new Command10("rules").description("Manage the store policy r
|
|
|
3683
3685
|
var program = new Command11();
|
|
3684
3686
|
program.name("appship").description(
|
|
3685
3687
|
"AI release assistant that analyzes your mobile app and prepares everything required for App Store and Google Play submission"
|
|
3686
|
-
).version(
|
|
3688
|
+
).version(APPSHIP_VERSION);
|
|
3687
3689
|
program.addCommand(initCommand);
|
|
3688
3690
|
program.addCommand(generateCommand);
|
|
3689
3691
|
program.addCommand(localizeCommand);
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
analyzeNativeIosProject,
|
|
5
5
|
findRootPbxproj,
|
|
6
6
|
hasNativeAndroidLayout
|
|
7
|
-
} from "./chunk-
|
|
8
|
-
import "./chunk-
|
|
7
|
+
} from "./chunk-D5IVOO3T.js";
|
|
8
|
+
import "./chunk-XGVCTALD.js";
|
|
9
9
|
export {
|
|
10
10
|
analyzeNativeAndroidProject,
|
|
11
11
|
analyzeNativeIosProject,
|
package/package.json
CHANGED