fss-link 1.0.13 → 1.0.14
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 +25 -8
- package/bundle/fss-link.js +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -42,15 +42,32 @@ cd project && fss-link rag index . && fss-link rag query "error handling"
|
|
|
42
42
|
|
|
43
43
|
## 📦 Installation
|
|
44
44
|
|
|
45
|
-
**FSS Link v1.0.
|
|
45
|
+
**FSS Link v1.0.13 is now published to NPM! Install it globally for the best experience:**
|
|
46
46
|
|
|
47
47
|
```bash
|
|
48
48
|
# Method 1: NPM Global Install (Recommended)
|
|
49
|
-
npm install -g
|
|
49
|
+
npm install -g fss-link
|
|
50
50
|
|
|
51
51
|
# Now you can use fss-link anywhere
|
|
52
52
|
fss-link --help
|
|
53
|
-
fss-link --version # Should show v1.0.
|
|
53
|
+
fss-link --version # Should show v1.0.13
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
### 🔄 **Node.js Version Requirements**
|
|
57
|
+
|
|
58
|
+
FSS Link requires **Node.js 20+**. If you have an older version, upgrade first:
|
|
59
|
+
|
|
60
|
+
```bash
|
|
61
|
+
# Check your current Node version
|
|
62
|
+
node --version
|
|
63
|
+
|
|
64
|
+
# If you have Node 18 or older, upgrade to Node 20:
|
|
65
|
+
curl -fsSL https://deb.nodesource.com/setup_20.x | sudo -E bash -
|
|
66
|
+
sudo apt-get install nodejs -y
|
|
67
|
+
|
|
68
|
+
# Verify upgrade
|
|
69
|
+
node --version # Should show v20.x.x
|
|
70
|
+
npm --version # Should show v10.x.x
|
|
54
71
|
```
|
|
55
72
|
|
|
56
73
|
```bash
|
|
@@ -69,13 +86,13 @@ fss-link --help
|
|
|
69
86
|
|
|
70
87
|
```bash
|
|
71
88
|
# Method 3: Run without installing globally
|
|
72
|
-
npx
|
|
89
|
+
npx fss-link
|
|
73
90
|
# OR from source
|
|
74
91
|
cd fss-link
|
|
75
92
|
npx fss-link
|
|
76
93
|
```
|
|
77
94
|
|
|
78
|
-
**✅ Note**: FSS Link is now published to npm as
|
|
95
|
+
**✅ Note**: FSS Link is now published to npm as `fss-link` v1.0.13!
|
|
79
96
|
|
|
80
97
|
## 🔧 Enhanced Features & Tools
|
|
81
98
|
|
|
@@ -195,8 +212,8 @@ fss-link rag query "error handling patterns" --files py,js --recent
|
|
|
195
212
|
|
|
196
213
|
### **Quick Install**
|
|
197
214
|
```bash
|
|
198
|
-
# Install from npm (Published v1.0.
|
|
199
|
-
npm install -g
|
|
215
|
+
# Install from npm (Published v1.0.13)
|
|
216
|
+
npm install -g fss-link
|
|
200
217
|
|
|
201
218
|
# Or clone from source for development
|
|
202
219
|
git clone http://192.168.1.3:3000/foxadmin/fss-link.git
|
|
@@ -204,7 +221,7 @@ cd fss-link
|
|
|
204
221
|
npm install && npm run build && npm link
|
|
205
222
|
|
|
206
223
|
# Verify installation
|
|
207
|
-
fss-link --version # Should show v1.0.
|
|
224
|
+
fss-link --version # Should show v1.0.13
|
|
208
225
|
```
|
|
209
226
|
|
|
210
227
|
## ⚙️ **Configuration**
|
package/bundle/fss-link.js
CHANGED
|
@@ -7695,7 +7695,7 @@ async function getPackageJson() {
|
|
|
7695
7695
|
// packages/cli/src/utils/version.ts
|
|
7696
7696
|
async function getCliVersion() {
|
|
7697
7697
|
const pkgJson = await getPackageJson();
|
|
7698
|
-
return "1.0.
|
|
7698
|
+
return "1.0.14";
|
|
7699
7699
|
}
|
|
7700
7700
|
|
|
7701
7701
|
// packages/cli/src/ui/commands/aboutCommand.ts
|
|
@@ -7747,7 +7747,7 @@ import open from "open";
|
|
|
7747
7747
|
import process6 from "node:process";
|
|
7748
7748
|
|
|
7749
7749
|
// packages/cli/src/generated/git-commit.ts
|
|
7750
|
-
var GIT_COMMIT_INFO = "
|
|
7750
|
+
var GIT_COMMIT_INFO = "5647c2eb";
|
|
7751
7751
|
|
|
7752
7752
|
// packages/cli/src/ui/commands/bugCommand.ts
|
|
7753
7753
|
import { sessionId as sessionId3 } from "@fsscoding/fss-link-core";
|