@antaif3ng/tilcode 0.100.0 → 0.100.1

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/README.md CHANGED
@@ -13,9 +13,14 @@ A clean, observable, and provider-agnostic CLI coding assistant based on Claude
13
13
 
14
14
  ## Install
15
15
 
16
+ Requires [Node.js](https://nodejs.org/) >= 18 and [Bun](https://bun.sh/) >= 1.3.
17
+
16
18
  ```bash
17
- # Requires Bun >= 1.3.11
18
- npm install -g tilcode
19
+ # Install Bun (if not already installed)
20
+ curl -fsSL https://bun.sh/install | bash
21
+
22
+ # Install Tilcode
23
+ npm install -g @antaif3ng/tilcode
19
24
  ```
20
25
 
21
26
  ## Quick Start
package/dist/cli.js CHANGED
@@ -1,3 +1,4 @@
1
+ #!/usr/bin/env bun
1
2
  // @bun
2
3
  var __create = Object.create;
3
4
  var __getProtoOf = Object.getPrototypeOf;
@@ -719130,7 +719131,7 @@ var init_main6 = __esm(() => {
719130
719131
  var feature = (_name) => false;
719131
719132
  if (typeof globalThis.MACRO === "undefined") {
719132
719133
  globalThis.MACRO = {
719133
- VERSION: "0.100.0",
719134
+ VERSION: "0.100.1",
719134
719135
  BUILD_TIME: new Date().toISOString(),
719135
719136
  FEEDBACK_CHANNEL: "",
719136
719137
  ISSUES_EXPLAINER: "",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@antaif3ng/tilcode",
3
- "version": "0.100.0",
3
+ "version": "0.100.1",
4
4
  "description": "A clean, observable, and provider-agnostic CLI coding assistant based on Claude Code",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -19,7 +19,7 @@
19
19
  "dist"
20
20
  ],
21
21
  "scripts": {
22
- "build": "bun build src/entrypoints/cli.tsx --outdir dist --target bun",
22
+ "build": "bun build src/entrypoints/cli.tsx --outdir dist --target bun && printf '#!/usr/bin/env bun\\n' | cat - dist/cli.js > dist/cli.tmp && mv dist/cli.tmp dist/cli.js && chmod +x dist/cli.js",
23
23
  "dev": "bun run src/entrypoints/cli.tsx",
24
24
  "prepublishOnly": "bun run build",
25
25
  "lint": "biome lint src/",