symlx 0.1.12 → 0.1.13
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 +2 -2
- package/package.json +20 -2
package/README.md
CHANGED
|
@@ -14,7 +14,7 @@ In a CLI project with:
|
|
|
14
14
|
run:
|
|
15
15
|
|
|
16
16
|
```bash
|
|
17
|
-
symlx
|
|
17
|
+
symlx serve
|
|
18
18
|
```
|
|
19
19
|
|
|
20
20
|
Then use your CLI normally:
|
|
@@ -23,7 +23,7 @@ Then use your CLI normally:
|
|
|
23
23
|
awesome-cli --help
|
|
24
24
|
```
|
|
25
25
|
|
|
26
|
-
Use `symlx
|
|
26
|
+
Use `symlx link` when you want one-shot linking without keeping a live file-watcher session open.
|
|
27
27
|
|
|
28
28
|
---
|
|
29
29
|
|
package/package.json
CHANGED
|
@@ -1,8 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "symlx",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.13",
|
|
4
4
|
"description": "Temporary local CLI bin linker",
|
|
5
5
|
"license": "MIT",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "git+https://github.com/emekaorji/symlx.git"
|
|
9
|
+
},
|
|
10
|
+
"homepage": "https://github.com/emekaorji/symlx#readme",
|
|
11
|
+
"bugs": {
|
|
12
|
+
"url": "https://github.com/emekaorji/symlx/issues"
|
|
13
|
+
},
|
|
14
|
+
"preferGlobal": true,
|
|
15
|
+
"publishConfig": {
|
|
16
|
+
"access": "public"
|
|
17
|
+
},
|
|
6
18
|
"bin": {
|
|
7
19
|
"symlx": "dist/cli.js",
|
|
8
20
|
"cx": "dist/cli.js"
|
|
@@ -14,7 +26,13 @@
|
|
|
14
26
|
"keywords": [
|
|
15
27
|
"cli",
|
|
16
28
|
"bin",
|
|
17
|
-
"
|
|
29
|
+
"command-linker",
|
|
30
|
+
"local-cli",
|
|
31
|
+
"developer-tooling",
|
|
32
|
+
"symlink",
|
|
33
|
+
"typescript",
|
|
34
|
+
"nodejs",
|
|
35
|
+
"npm-link"
|
|
18
36
|
],
|
|
19
37
|
"engines": {
|
|
20
38
|
"node": ">=18.0.0"
|