hot-updater 0.13.0 → 0.13.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.
@@ -0,0 +1,4 @@
1
+ export declare function getBundleZipTargets(basePath: string, files: string[]): Promise<{
2
+ path: string;
3
+ name: string;
4
+ }[]>;
@@ -0,0 +1 @@
1
+ export {};
@@ -1,2 +1,2 @@
1
- export declare const getLatestGitCommitMessage: () => Promise<string | null>;
2
- export declare const getGitCommitHash: () => Promise<string | null>;
1
+ import { type Commit } from "es-git";
2
+ export declare const getLatestGitCommit: () => Promise<Commit | null>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "hot-updater",
3
3
  "type": "module",
4
- "version": "0.13.0",
4
+ "version": "0.13.2",
5
5
  "bin": {
6
6
  "hot-updater": "./dist/index.js"
7
7
  },
@@ -49,22 +49,23 @@
49
49
  },
50
50
  "dependencies": {
51
51
  "@clack/prompts": "^0.10.0",
52
- "@hot-updater/console": "0.13.0",
53
- "@hot-updater/core": "0.13.0",
54
- "@hot-updater/plugin-core": "0.13.0",
52
+ "@hot-updater/console": "0.13.2",
53
+ "@hot-updater/core": "0.13.2",
54
+ "@hot-updater/plugin-core": "0.13.2",
55
55
  "commander": "^11.1.0",
56
56
  "cosmiconfig": "^9.0.0",
57
- "cosmiconfig-typescript-loader": "^5.0.0"
57
+ "cosmiconfig-typescript-loader": "^5.0.0",
58
+ "es-git": "^0.1.0"
58
59
  },
59
60
  "devDependencies": {
60
61
  "@babel/core": "7.26.0",
62
+ "@babel/generator": "7.26.9",
63
+ "@babel/parser": "7.26.9",
61
64
  "@babel/traverse": "7.25.9",
62
65
  "@babel/types": "7.26.0",
63
- "@babel/parser": "7.26.9",
64
- "@babel/generator": "7.26.9",
65
- "@types/babel__generator": "7.6.8",
66
66
  "@hono/node-server": "^1.13.4",
67
67
  "@types/babel__core": "7.20.5",
68
+ "@types/babel__generator": "7.6.8",
68
69
  "@types/babel__traverse": "7.20.6",
69
70
  "@types/connect": "^3.4.38",
70
71
  "@types/cosmiconfig": "^6.0.0",
@@ -73,6 +74,7 @@
73
74
  "@types/semver": "^7.5.8",
74
75
  "es-toolkit": "^1.32.0",
75
76
  "execa": "^9.5.2",
77
+ "find-up-simple": "^1.0.1",
76
78
  "is-port-reachable": "^4.0.0",
77
79
  "open": "^10.1.0",
78
80
  "picocolors": "^1.0.0",