We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 74ed41a commit 798f78cCopy full SHA for 798f78c
1 file changed
src/commands/browserforce/apply.ts
@@ -12,10 +12,7 @@ function loadPluginSchema(pluginName: string): unknown | undefined {
12
try {
13
// Resolve schema path relative to the plugins directory
14
// Since we're in src/commands/browserforce/, we need to go up to src/plugins/
15
- const schemaPath = new URL(
16
- `../../plugins/${camelToKebab(pluginName)}/schema.json`,
17
- import.meta.url,
18
- );
+ const schemaPath = new URL(`../../plugins/${camelToKebab(pluginName)}/schema.json`, import.meta.url);
19
const schemaContent = readFileSync(schemaPath, 'utf8');
20
return JSON.parse(schemaContent);
21
} catch (error) {
0 commit comments