stringray-ai 1.0.21 → 1.0.22
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "stringray-ai",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.22",
|
|
4
4
|
"description": "⚡ StringRay ⚡: Bulletproof AI orchestration with systematic error prevention. Zero dead ends. Ship clean, tested, optimized code — every time.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/plugin/index.js",
|
|
@@ -88,6 +88,11 @@ console.log('=====================================\n');
|
|
|
88
88
|
async function runComprehensiveTests() {
|
|
89
89
|
console.log('\n🔬 Running comprehensive deployment validation...\n');
|
|
90
90
|
|
|
91
|
+
// Get the directory path in ES modules
|
|
92
|
+
const { fileURLToPath } = await import('url');
|
|
93
|
+
const { dirname } = await import('path');
|
|
94
|
+
const __dirname = dirname(fileURLToPath(import.meta.url));
|
|
95
|
+
|
|
91
96
|
const tests = [
|
|
92
97
|
{
|
|
93
98
|
name: 'MCP Configuration Validation',
|