@sevenvip666/rop 0.1.12 → 0.1.13
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/bin/index.mjs +12 -1
- package/dist/types/types.d.ts +1 -1
- package/package.json +1 -1
package/dist/bin/index.mjs
CHANGED
|
@@ -451,11 +451,22 @@ var capacitor = {
|
|
|
451
451
|
arch: "universal",
|
|
452
452
|
artifacts: {
|
|
453
453
|
target: {
|
|
454
|
-
path: "android/app/build/outputs/release/app-release.apk",
|
|
454
|
+
path: "android/app/build/outputs/release/apk/app-release.apk",
|
|
455
455
|
name: "${appName}_${version}.apk"
|
|
456
456
|
}
|
|
457
457
|
}
|
|
458
458
|
}
|
|
459
|
+
],
|
|
460
|
+
web: [
|
|
461
|
+
{
|
|
462
|
+
arch: "universal",
|
|
463
|
+
artifacts: {
|
|
464
|
+
target: {
|
|
465
|
+
path: "${appName}.zip",
|
|
466
|
+
name: "${appName}_${version}.zip"
|
|
467
|
+
}
|
|
468
|
+
}
|
|
469
|
+
}
|
|
459
470
|
]
|
|
460
471
|
};
|
|
461
472
|
var platformDefaultConfigMap = {
|
package/dist/types/types.d.ts
CHANGED
|
@@ -9,7 +9,7 @@ export declare enum Framework {
|
|
|
9
9
|
FLUTTER = "flutter"
|
|
10
10
|
}
|
|
11
11
|
export type FrameworkType = (typeof frameworkList)[number];
|
|
12
|
-
export type Platform = 'android' | 'ios' | 'windows' | 'macos' | 'linux' | '
|
|
12
|
+
export type Platform = 'android' | 'ios' | 'windows' | 'macos' | 'linux' | 'web';
|
|
13
13
|
export type Arch = 'aarch64' | 'x86_64' | 'x64' | 'i686' | 'universal' | 'arm64' | 'i386' | string;
|
|
14
14
|
export type Module = 'target' | 'update' | 'sig';
|
|
15
15
|
export type ProjectConfigJson = {
|