@syntesseraai/opencode-feature-factory 0.4.1 → 0.4.2
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/bin/ff-deploy.js +3 -1
- package/package.json +1 -1
package/bin/ff-deploy.js
CHANGED
|
@@ -182,7 +182,9 @@ async function updateMCPConfig() {
|
|
|
182
182
|
|
|
183
183
|
async function deploy() {
|
|
184
184
|
if (isInteractive) {
|
|
185
|
-
|
|
185
|
+
const pkgContent = await fs.readFile(join(PACKAGE_ROOT, 'package.json'), 'utf8');
|
|
186
|
+
const pkgVersion = JSON.parse(pkgContent).version;
|
|
187
|
+
console.log(`🚀 Feature Factory OpenCode Plugin v${pkgVersion} - Deployment`);
|
|
186
188
|
console.log('================================================\n');
|
|
187
189
|
}
|
|
188
190
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/package.json",
|
|
3
3
|
"name": "@syntesseraai/opencode-feature-factory",
|
|
4
|
-
"version": "0.4.
|
|
4
|
+
"version": "0.4.2",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "OpenCode plugin for Feature Factory agents - provides sub-agents and skills for validation, review, security, and architecture assessment",
|
|
7
7
|
"license": "MIT",
|