expose-kit 0.10.2 → 0.10.3

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/index.js CHANGED
@@ -2217,8 +2217,8 @@ var calmGradienrain = (text) => {
2217
2217
  )(char);
2218
2218
  }).join("");
2219
2219
  };
2220
- var showCredit = (VERSION) => beautify`
2221
- ${calmGradienrain(`Expose Kit v${VERSION}`)}
2220
+ var showCredit = (VERSION, update) => beautify`
2221
+ ${calmGradienrain(`Expose Kit v${VERSION}`)} ${update ? `(Update available: v${update.latest})` : ""}
2222
2222
  `;
2223
2223
 
2224
2224
  // index.ts
@@ -2231,10 +2231,7 @@ var notifier = updateNotifier({
2231
2231
  pkg,
2232
2232
  updateCheckInterval: 0
2233
2233
  });
2234
- if (notifier.update) {
2235
- console.log(`${chalk4.yellow("Update available:")} ${notifier.update.latest}`);
2236
- }
2237
- console.log(showCredit(pkg.version));
2234
+ console.log(showCredit(pkg.version, notifier.update));
2238
2235
  console.log();
2239
2236
  var program2 = new Command();
2240
2237
  program2.name("expose").description("CLI for Deobfuscating").version(
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expose-kit",
3
- "version": "0.10.2",
3
+ "version": "0.10.3",
4
4
  "type": "module",
5
5
  "private": false,
6
6
  "author": "EdamAmex <edame8080@gmail.com> (https://github.com/EdamAme-x)",
@@ -45,6 +45,7 @@
45
45
  "@types/update-notifier": "^6.0.8",
46
46
  "chalk": "^5.6.2",
47
47
  "commander": "^14.0.2",
48
+ "expose-kit": "^0.10.2",
48
49
  "loading-cli": "^1.1.2",
49
50
  "update-notifier": "^7.3.1"
50
51
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expose-kit",
3
- "version": "0.10.2",
3
+ "version": "0.10.3",
4
4
  "type": "module",
5
5
  "private": false,
6
6
  "author": "EdamAmex <edame8080@gmail.com> (https://github.com/EdamAme-x)",
@@ -45,6 +45,7 @@
45
45
  "@types/update-notifier": "^6.0.8",
46
46
  "chalk": "^5.6.2",
47
47
  "commander": "^14.0.2",
48
+ "expose-kit": "^0.10.2",
48
49
  "loading-cli": "^1.1.2",
49
50
  "update-notifier": "^7.3.1"
50
51
  },