fss-link 1.0.47 → 1.0.49

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.
@@ -94,7 +94,7 @@ export function getInstallationInfo(
94
94
 
95
95
  // Check for pnpm
96
96
  if (realPath.includes('/.pnpm/global')) {
97
- const updateCommand = 'pnpm add -g fss-link-core@latest';
97
+ const updateCommand = 'pnpm add -g fss-link@latest';
98
98
  return {
99
99
  packageManager: PackageManager.PNPM,
100
100
  isGlobal: true,
@@ -107,7 +107,7 @@ export function getInstallationInfo(
107
107
 
108
108
  // Check for yarn
109
109
  if (realPath.includes('/.yarn/global')) {
110
- const updateCommand = 'yarn global add fss-link-core@latest';
110
+ const updateCommand = 'yarn global add fss-link@latest';
111
111
  return {
112
112
  packageManager: PackageManager.YARN,
113
113
  isGlobal: true,
@@ -127,7 +127,7 @@ export function getInstallationInfo(
127
127
  };
128
128
  }
129
129
  if (realPath.includes('/.bun/bin')) {
130
- const updateCommand = 'bun add -g fss-link-core@latest';
130
+ const updateCommand = 'bun add -g fss-link@latest';
131
131
  return {
132
132
  packageManager: PackageManager.BUN,
133
133
  isGlobal: true,
@@ -160,7 +160,7 @@ export function getInstallationInfo(
160
160
  }
161
161
 
162
162
  // Assume global npm
163
- const updateCommand = 'npm install -g fss-link-core@latest';
163
+ const updateCommand = 'npm install -g fss-link@latest';
164
164
  return {
165
165
  packageManager: PackageManager.NPM,
166
166
  isGlobal: true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fss-link",
3
- "version": "1.0.47",
3
+ "version": "1.0.49",
4
4
  "description": "FSS Link - AI-powered coding assistant",
5
5
  "repository": {
6
6
  "type": "git",
@@ -28,7 +28,7 @@
28
28
  "sandboxImageUri": "ghcr.io/fsscoding/fss-link:0.0.10"
29
29
  },
30
30
  "dependencies": {
31
- "fss-link-core": "1.0.45",
31
+ "fss-link-core": "1.0.46",
32
32
  "@google/genai": "1.9.0",
33
33
  "@iarna/toml": "^2.2.5",
34
34
  "@modelcontextprotocol/sdk": "^1.15.1",