basuicn 0.1.7 → 0.1.8

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/ui-cli.cjs CHANGED
@@ -1,5 +1,4 @@
1
1
  #!/usr/bin/env node
2
- #!/usr/bin/env node
3
2
  var __create = Object.create;
4
3
  var __defProp = Object.defineProperty;
5
4
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
@@ -28,7 +27,7 @@ var import_fs = __toESM(require("fs"), 1);
28
27
  var import_path = __toESM(require("path"), 1);
29
28
  var import_child_process = require("child_process");
30
29
  var import_readline = __toESM(require("readline"), 1);
31
- var VERSION = "0.1.6";
30
+ var VERSION = "0.1.7";
32
31
  var REGISTRY_LOCAL = "./registry.json";
33
32
  var REGISTRY_REMOTE = "https://raw.githubusercontent.com/Basuicn/basuicn-core/main/registry.json";
34
33
  var c = {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "basuicn",
3
3
  "private": false,
4
- "version": "0.1.7",
4
+ "version": "0.1.8",
5
5
  "type": "module",
6
6
  "bin": {
7
7
  "basuicn": "./dist/ui-cli.cjs"
@@ -7,7 +7,6 @@ await build({
7
7
  outfile: 'dist/ui-cli.cjs',
8
8
  format: 'cjs',
9
9
  packages: 'external',
10
- banner: { js: '#!/usr/bin/env node' },
11
10
  });
12
11
 
13
12
  console.log('✔ CLI built → dist/ui-cli.cjs');
package/scripts/ui-cli.ts CHANGED
@@ -6,7 +6,7 @@ import readline from 'readline';
6
6
 
7
7
  // ─── Constants ────────────────────────────────────────────────────────────────
8
8
 
9
- const VERSION = '0.1.7';
9
+ const VERSION = '0.1.8';
10
10
  const REGISTRY_LOCAL = './registry.json';
11
11
  const REGISTRY_REMOTE = 'https://raw.githubusercontent.com/Basuicn/basuicn-core/main/registry.json';
12
12