sandboxbox 3.0.6 → 3.0.7
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 +1 -1
- package/utils/sandbox.js +10 -0
package/package.json
CHANGED
package/utils/sandbox.js
CHANGED
|
@@ -110,6 +110,16 @@ export function createSandbox(projectDir) {
|
|
|
110
110
|
if (existsSync(pluginsDir)) {
|
|
111
111
|
const sandboxPluginsDir = join(sandboxClaudeDir, 'plugins');
|
|
112
112
|
cpSync(pluginsDir, sandboxPluginsDir, { recursive: true });
|
|
113
|
+
|
|
114
|
+
// Verify the marketplace plugin was copied
|
|
115
|
+
const marketplacePlugin = join(sandboxPluginsDir, 'marketplaces', 'anentrypoint-plugins');
|
|
116
|
+
if (existsSync(marketplacePlugin)) {
|
|
117
|
+
console.error('DEBUG: Marketplace plugin copied successfully');
|
|
118
|
+
} else {
|
|
119
|
+
console.error('DEBUG: Marketplace plugin copy failed');
|
|
120
|
+
}
|
|
121
|
+
} else {
|
|
122
|
+
console.error('DEBUG: No plugins directory found at:', pluginsDir);
|
|
113
123
|
}
|
|
114
124
|
}
|
|
115
125
|
|