hot-updater 0.1.2 → 0.1.4

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/config.cjs CHANGED
@@ -23,7 +23,7 @@ __export(config_exports, {
23
23
  defineConfig: () => defineConfig
24
24
  });
25
25
  module.exports = __toCommonJS(config_exports);
26
- var defineConfig = (config) => typeof config === "function" ? config() : config;
26
+ var defineConfig = async (config) => typeof config === "function" ? await config() : config;
27
27
  // Annotate the CommonJS export names for ESM import in node:
28
28
  0 && (module.exports = {
29
29
  defineConfig
package/dist/config.d.cts CHANGED
@@ -1,5 +1,5 @@
1
1
  import { Config } from '@hot-updater/plugin-core';
2
2
 
3
- declare const defineConfig: (config: Config | (() => Config)) => Config;
3
+ declare const defineConfig: (config: Config | (() => Config) | (() => Promise<Config>)) => Promise<Config>;
4
4
 
5
5
  export { defineConfig };
package/dist/config.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import { Config } from '@hot-updater/plugin-core';
2
2
 
3
- declare const defineConfig: (config: Config | (() => Config)) => Config;
3
+ declare const defineConfig: (config: Config | (() => Config) | (() => Promise<Config>)) => Promise<Config>;
4
4
 
5
5
  export { defineConfig };
package/dist/config.js CHANGED
@@ -1,7 +1,7 @@
1
1
  import "./chunk-XCQPUXG2.js";
2
2
 
3
3
  // src/config.ts
4
- var defineConfig = (config) => typeof config === "function" ? config() : config;
4
+ var defineConfig = async (config) => typeof config === "function" ? await config() : config;
5
5
  export {
6
6
  defineConfig
7
7
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "hot-updater",
3
3
  "type": "module",
4
- "version": "0.1.2",
4
+ "version": "0.1.4",
5
5
  "bin": {
6
6
  "hot-updater": "./dist/index.js"
7
7
  },
@@ -14,7 +14,6 @@
14
14
  },
15
15
  "files": [
16
16
  "dist",
17
- "src",
18
17
  "package.json"
19
18
  ],
20
19
  "description": "React Native OTA solution for self-hosted",
@@ -31,7 +30,7 @@
31
30
  "dependencies": {
32
31
  "@clack/prompts": "^0.7.0",
33
32
  "@hono/node-server": "^1.13.4",
34
- "@hot-updater/console": "0.1.2",
33
+ "@hot-updater/console": "0.1.4",
35
34
  "boxen": "^8.0.1",
36
35
  "commander": "^11.1.0",
37
36
  "cosmiconfig": "^9.0.0",
@@ -41,8 +40,8 @@
41
40
  "plist": "^3.1.0",
42
41
  "read-package-up": "^11.0.0",
43
42
  "workspace-tools": "^0.36.4",
44
- "@hot-updater/plugin-core": "0.1.2",
45
- "@hot-updater/utils": "0.1.2"
43
+ "@hot-updater/plugin-core": "0.1.4",
44
+ "@hot-updater/utils": "0.1.4"
46
45
  },
47
46
  "devDependencies": {
48
47
  "@types/connect": "^3.4.38",
@@ -1,15 +0,0 @@
1
- import { serve } from "@hono/node-server";
2
-
3
- import app from "@hot-updater/console";
4
-
5
- export const openConsole = () => {
6
- serve(
7
- {
8
- fetch: app.fetch,
9
- port: 1422,
10
- },
11
- (info) => {
12
- console.log(`Server running on port ${info.port}`);
13
- },
14
- );
15
- };
@@ -1,105 +0,0 @@
1
- import fs from "node:fs/promises";
2
- import { intro, spinner, text } from "@clack/prompts";
3
-
4
- import { createZip } from "@/utils/createZip";
5
- import { formatDate } from "@/utils/formatDate";
6
- import { getDefaultTargetVersion } from "@/utils/getDefaultTargetVersion";
7
- import { getFileHashFromFile } from "@/utils/getFileHash";
8
- import { getCwd, loadConfig } from "@hot-updater/plugin-core";
9
- import { type Platform, filterTargetVersion } from "@hot-updater/utils";
10
-
11
- export interface DeployOptions {
12
- targetVersion?: string;
13
- platform: Platform;
14
- forceUpdate: boolean;
15
- }
16
-
17
- export const deploy = async (options: DeployOptions) => {
18
- const s = spinner();
19
-
20
- try {
21
- const config = await loadConfig();
22
- if (!config) {
23
- console.error("No config found. Please run `hot-updater init` first.");
24
- process.exit(1);
25
- }
26
-
27
- intro("Please provide a description for the bundle.");
28
- const description = await text({ message: "Description" });
29
-
30
- const cwd = getCwd();
31
- const targetVersion =
32
- options.targetVersion ??
33
- (await getDefaultTargetVersion(cwd, options.platform));
34
-
35
- if (!targetVersion) {
36
- throw new Error(
37
- "Target version not found. Please provide a target version.",
38
- );
39
- }
40
-
41
- s.start("Build in progress");
42
-
43
- const { buildPath } = await config.build({
44
- cwd,
45
- platform: options.platform,
46
- });
47
- s.message("Checking existing updates...");
48
-
49
- await createZip(buildPath, "build.zip");
50
-
51
- const bundlePath = buildPath.concat(".zip");
52
-
53
- const hash = await getFileHashFromFile(bundlePath);
54
-
55
- const newBundleVersion = formatDate(new Date());
56
-
57
- const deployPlugin = config.deploy({
58
- cwd,
59
- });
60
-
61
- const updateSources = await deployPlugin.getUpdateSources();
62
- const targetVersions = filterTargetVersion(
63
- updateSources ?? [],
64
- targetVersion,
65
- options.platform,
66
- );
67
-
68
- // hash check
69
- if (targetVersions.length > 0) {
70
- const recentVersion = targetVersions[0];
71
- const recentHash = recentVersion?.hash;
72
-
73
- if (recentHash === hash) {
74
- s.stop("The update already exists.", -1);
75
- return;
76
- }
77
- }
78
-
79
- s.message("Uploading bundle...");
80
- const { file } = await deployPlugin.uploadBundle(
81
- options.platform,
82
- newBundleVersion,
83
- bundlePath,
84
- );
85
-
86
- await deployPlugin.appendUpdateSource({
87
- forceUpdate: options.forceUpdate,
88
- platform: options.platform,
89
- file,
90
- hash,
91
- description: String(description),
92
- targetVersion,
93
- bundleVersion: newBundleVersion,
94
- enabled: true,
95
- });
96
- await deployPlugin.commitUpdateSource();
97
-
98
- await fs.rm(bundlePath);
99
- s.stop("Uploading Success !", 0);
100
- } catch (e) {
101
- s.stop("Uploading Failed !", -1);
102
- console.error(e);
103
- process.exit(-1);
104
- }
105
- };
@@ -1,11 +0,0 @@
1
- import crypto from "crypto";
2
- import { text } from "@clack/prompts";
3
-
4
- export const generateSecretKey = async () => {
5
- const secretKey = crypto.randomBytes(32).toString("hex");
6
-
7
- await text({
8
- message: "Secret Key: ",
9
- initialValue: secretKey,
10
- });
11
- };
@@ -1,56 +0,0 @@
1
- import * as p from "@clack/prompts";
2
- import { type Platform, getCwd } from "@hot-updater/plugin-core";
3
- import { loadConfig } from "@hot-updater/plugin-core";
4
-
5
- export interface PruneOptions {
6
- platform: Platform;
7
- }
8
-
9
- export const prune = async (options: PruneOptions) => {
10
- const s = p.spinner();
11
-
12
- try {
13
- const config = await loadConfig();
14
- if (!config) {
15
- console.error("No config found. Please run `hot-updater init` first.");
16
- process.exit(1);
17
- }
18
-
19
- const cwd = getCwd();
20
-
21
- const deployPlugin = config.deploy({
22
- cwd,
23
- // spinner: s,
24
- });
25
-
26
- s.start("Checking existing updates");
27
- const updateSources = await deployPlugin.getUpdateSources();
28
-
29
- const activeSources = updateSources.filter((source) => source.enabled);
30
- const inactiveSources = updateSources.filter((source) => !source.enabled);
31
-
32
- if (inactiveSources.length === 0) {
33
- s.stop("No inactive versions found", -1);
34
- return;
35
- }
36
-
37
- s.message("Pruning updates");
38
-
39
- await deployPlugin.setUpdateSources(activeSources);
40
- await deployPlugin.commitUpdateSource();
41
-
42
- for (const source of inactiveSources) {
43
- const key = await deployPlugin.deleteBundle(
44
- options.platform,
45
- source.bundleVersion,
46
- );
47
- p.log.info(`deleting: ${key}`);
48
- }
49
-
50
- s.stop("Done");
51
- } catch (e) {
52
- s.stop("Pruning Failed !", -1);
53
- console.error(e);
54
- process.exit(-1);
55
- }
56
- };
@@ -1,20 +0,0 @@
1
- import { version } from "@/packageJson";
2
- import boxen from "boxen";
3
- import picocolors from "picocolors";
4
-
5
- export const banner = boxen(
6
- [
7
- `${picocolors.bold("Hot Updater - React Native OTA Solution")} v${version}`,
8
- "",
9
- `Github: ${picocolors.magenta(
10
- picocolors.underline("https://github.com/gronxb/hot-updater"),
11
- )}`,
12
- "Give a ⭐️ if you like it!",
13
- ].join("\n"),
14
- {
15
- padding: 1,
16
- borderStyle: "round",
17
- borderColor: "redBright",
18
- textAlignment: "center",
19
- },
20
- );
package/src/config.ts DELETED
@@ -1,4 +0,0 @@
1
- import type { Config } from "@hot-updater/plugin-core";
2
-
3
- export const defineConfig = (config: Config | (() => Config)): Config =>
4
- typeof config === "function" ? config() : config;
package/src/index.ts DELETED
@@ -1,88 +0,0 @@
1
- #!/usr/bin/env node
2
- import { openConsole } from "@/commands/console";
3
- import { type DeployOptions, deploy } from "@/commands/deploy";
4
- import { generateSecretKey } from "@/commands/generateSecretKey";
5
- import { prune } from "@/commands/prune";
6
- import { banner } from "@/components/banner";
7
- import { version } from "@/packageJson";
8
- import { getPlatform } from "@/prompts/getPlatform";
9
- import { getDefaultTargetVersion } from "@/utils/getDefaultTargetVersion";
10
- import { getCwd, log } from "@hot-updater/plugin-core";
11
- import { Command, Option } from "commander";
12
-
13
- const program = new Command();
14
-
15
- program
16
- .name("hot-updater")
17
- .description(banner)
18
- .version(version as string);
19
-
20
- program
21
- .command("init")
22
- .description("Initialize Hot Updater")
23
- .action(() => {
24
- console.log("Initializing Hot Updater");
25
- });
26
-
27
- program
28
- .command("deploy")
29
- .description("deploy a new version")
30
- .addOption(
31
- new Option("-p, --platform <platform>", "specify the platform").choices([
32
- "ios",
33
- "android",
34
- ]),
35
- )
36
- .addOption(
37
- new Option("-t, --target-version <targetVersion>", "specify the platform"),
38
- )
39
- .addOption(
40
- new Option("-f, --force-update", "force update the app").default(false),
41
- )
42
- .action(async (options: DeployOptions) => {
43
- if (!options.platform) {
44
- options.platform = await getPlatform(
45
- "Which platform do you want to deploy?",
46
- );
47
- }
48
- deploy(options);
49
- });
50
-
51
- program.command("console").description("open the console").action(openConsole);
52
-
53
- program
54
- .command("generate-secret-key")
55
- .description("generate a new secret key")
56
- .action(generateSecretKey);
57
-
58
- program
59
- .command("app-version")
60
- .description("get the current app version")
61
-
62
- .action(async () => {
63
- const path = getCwd();
64
- const androidVersion = await getDefaultTargetVersion(path, "android");
65
- const iosVersion = await getDefaultTargetVersion(path, "ios");
66
-
67
- log.info(`Android version: ${androidVersion}`);
68
- log.info(`iOS version: ${iosVersion}`);
69
- });
70
-
71
- program
72
- .command("prune")
73
- .description("prune all the inactive versions")
74
- .addOption(
75
- new Option("-p, --platform <platform>", "specify the platform").choices([
76
- "ios",
77
- "android",
78
- ]),
79
- )
80
- .action(async (options) => {
81
- if (!options.platform) {
82
- options.platform = await getPlatform(
83
- "Which platform do you want to prune?",
84
- );
85
- }
86
- prune(options);
87
- });
88
- program.parse(process.argv);
@@ -1,7 +0,0 @@
1
- import { readPackageUpSync } from "read-package-up";
2
-
3
- export const packageJsonData = readPackageUpSync({
4
- cwd: __dirname,
5
- });
6
-
7
- export const version = packageJsonData?.packageJson.version;
@@ -1,19 +0,0 @@
1
- import { select } from "@clack/prompts";
2
- import type { Platform } from "@hot-updater/utils";
3
-
4
- export const getPlatform = async (message: string) => {
5
- const platform = await select({
6
- message: message,
7
- initialValue: "ios" as Platform,
8
- options: [
9
- { label: "ios", value: "ios" },
10
- { label: "android", value: "android" },
11
- ],
12
- });
13
-
14
- if (typeof platform !== "string") {
15
- throw new Error("Invalid platform");
16
- }
17
-
18
- return platform;
19
- };
@@ -1,47 +0,0 @@
1
- import path from "path";
2
- import fs from "fs/promises";
3
-
4
- import JSZip from "jszip";
5
-
6
- export const createZip = async (dirPath: string, filename: string) => {
7
- const zip = new JSZip();
8
-
9
- async function addFiles(dir: string, zipFolder: JSZip) {
10
- const files = await fs.readdir(dir);
11
- files.sort();
12
- for (const file of files) {
13
- const fullPath = path.join(dir, file);
14
- const stats = await fs.stat(fullPath);
15
-
16
- if (stats.isDirectory()) {
17
- const folder = zipFolder.folder(file);
18
- if (!folder) {
19
- continue;
20
- }
21
-
22
- await addFiles(fullPath, folder);
23
- } else {
24
- const data = await fs.readFile(fullPath);
25
- zipFolder.file(file, data);
26
- }
27
- }
28
- }
29
-
30
- await addFiles(dirPath, zip);
31
-
32
- // fix hash
33
- zip.forEach((_, file) => {
34
- file.date = new Date(0);
35
- });
36
-
37
- const content = await zip.generateAsync({
38
- type: "nodebuffer",
39
- compression: "DEFLATE",
40
- compressionOptions: {
41
- level: 9,
42
- },
43
- platform: "UNIX",
44
- });
45
-
46
- await fs.writeFile(filename, content);
47
- };
@@ -1,2 +0,0 @@
1
- export const delay = (ms: number) =>
2
- new Promise((resolve) => setTimeout(resolve, ms));
@@ -1,21 +0,0 @@
1
- export const formatDate = (date: Date) => {
2
- const year = date.getFullYear();
3
- const month = String(date.getMonth() + 1).padStart(2, "0");
4
- const day = String(date.getDate()).padStart(2, "0");
5
- const hours = String(date.getHours()).padStart(2, "0");
6
- const minutes = String(date.getMinutes()).padStart(2, "0");
7
- const seconds = String(date.getSeconds()).padStart(2, "0");
8
-
9
- return Number(`${year}${month}${day}${hours}${minutes}${seconds}`);
10
- };
11
-
12
- export function formatDateTimeFromBundleVersion(input: string): string {
13
- const year = input.substring(0, 4);
14
- const month = input.substring(4, 6);
15
- const day = input.substring(6, 8);
16
- const hour = input.substring(8, 10);
17
- const minute = input.substring(10, 12);
18
- const second = input.substring(12, 14);
19
-
20
- return `${year}/${month}/${day} ${hour}:${minute}:${second}`;
21
- }
@@ -1,76 +0,0 @@
1
- import { exec } from "child_process";
2
- import path from "path";
3
- import util from "util";
4
- import type { Platform } from "@hot-updater/plugin-core";
5
- import fs from "fs/promises";
6
-
7
- const findXCodeProjectFilename = async (
8
- cwd: string,
9
- ): Promise<string | null> => {
10
- try {
11
- const iosDirPath = path.join(cwd, "ios");
12
- const dirContent = await fs.readdir(iosDirPath);
13
- for (const item of dirContent) {
14
- const itemPath = path.join(iosDirPath, item);
15
- const stats = await fs.stat(itemPath);
16
- if (stats.isDirectory()) {
17
- const pbxprojPath = path.join(itemPath, "project.pbxproj");
18
- try {
19
- await fs.access(pbxprojPath);
20
- return item;
21
- } catch {
22
- // Not the directory we are looking for
23
- }
24
- }
25
- }
26
- return null;
27
- } catch (error) {
28
- return null;
29
- }
30
- };
31
-
32
- export const getIOSVersion = async (cwd: string): Promise<string | null> => {
33
- const filename = await findXCodeProjectFilename(cwd);
34
- if (!filename) return null;
35
-
36
- const projectPath = path.join(cwd, "ios", filename);
37
- try {
38
- const execPromise = util.promisify(exec);
39
-
40
- const { stdout } = await execPromise(
41
- `xcodebuild -project ${projectPath} -showBuildSettings | grep MARKETING_VERSION`,
42
- );
43
- const versionMatch = stdout.match(/MARKETING_VERSION = ([\d.]+)/);
44
- return versionMatch?.[1] ? versionMatch[1] : null;
45
- } catch (error) {
46
- return null;
47
- }
48
- };
49
-
50
- export const getAndroidVersion = async (
51
- cwd: string,
52
- ): Promise<string | null> => {
53
- const buildGradlePath = path.join(cwd, "android", "app", "build.gradle");
54
- try {
55
- const buildGradleContent = await fs.readFile(buildGradlePath, "utf8");
56
- const versionNameMatch = buildGradleContent.match(
57
- /versionName\s+"([\d.]+)"/,
58
- );
59
- return versionNameMatch?.[1] ? versionNameMatch[1] : null;
60
- } catch (error) {
61
- return null;
62
- }
63
- };
64
-
65
- export const getDefaultTargetVersion = async (
66
- cwd: string,
67
- platform: Platform,
68
- ): Promise<string | null> => {
69
- switch (platform) {
70
- case "ios":
71
- return getIOSVersion(cwd);
72
- case "android":
73
- return getAndroidVersion(cwd);
74
- }
75
- return null;
76
- };
@@ -1,22 +0,0 @@
1
- import crypto from "crypto";
2
- import fs from "fs/promises";
3
-
4
- export const getFileHashFromFile = async (filepath: string) => {
5
- try {
6
- // Read the file
7
- const fileBuffer = await fs.readFile(filepath).catch((error) => {
8
- console.error("Error reading the file:", error);
9
- throw error;
10
- });
11
-
12
- // Calculate the hash
13
- const hash = crypto.createHash("sha256");
14
- hash.update(fileBuffer);
15
- const fileHash = hash.digest("hex");
16
-
17
- return fileHash;
18
- } catch (error) {
19
- console.error("Error fetching or processing the file:", error);
20
- throw error;
21
- }
22
- };
@@ -1,26 +0,0 @@
1
- export function toRotated<T>(array: T[], steps: number): T[] {
2
- if (!Array.isArray(array)) {
3
- throw new TypeError(`Expected an array, got \`${typeof array}\`.`);
4
- }
5
-
6
- if (!Number.isSafeInteger(steps)) {
7
- throw new TypeError(
8
- `The \`steps\` parameter must be an integer, got ${steps}.`,
9
- );
10
- }
11
-
12
- const { length } = array;
13
- if (length === 0) {
14
- return [...array];
15
- }
16
-
17
- const normalizedSteps = ((steps % length) + length) % length;
18
- if (normalizedSteps === 0) {
19
- return [...array];
20
- }
21
-
22
- return [
23
- ...array.slice(-normalizedSteps),
24
- ...array.slice(0, -normalizedSteps),
25
- ];
26
- }