aglit 0.1.2 → 0.1.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.
Files changed (2) hide show
  1. package/README.md +17 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -19,6 +19,23 @@ Run without installing:
19
19
  bunx aglit@latest --help
20
20
  ```
21
21
 
22
+ Local development from this repository:
23
+
24
+ ```bash
25
+ # in packages/cli
26
+ bun run build
27
+ bun link
28
+
29
+ # now available in your shell
30
+ aglit --help
31
+ ```
32
+
33
+ Optional: in another project directory, link it as a dependency:
34
+
35
+ ```bash
36
+ bun link aglit
37
+ ```
38
+
22
39
  ## Quick start
23
40
 
24
41
  ```bash
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aglit",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",