18 lines
501 B
JavaScript
18 lines
501 B
JavaScript
import path from 'path';
|
|
import { fileURLToPath } from 'url';
|
|
|
|
const __dirname = path.dirname(fileURLToPath(import.meta.url));
|
|
const skillsDir = path.resolve(__dirname, '../../skills');
|
|
|
|
export const AstrbotPluginDevPlugin = async () => {
|
|
return {
|
|
config: async (config) => {
|
|
config.skills = config.skills || {};
|
|
config.skills.paths = config.skills.paths || [];
|
|
if (!config.skills.paths.includes(skillsDir)) {
|
|
config.skills.paths.push(skillsDir);
|
|
}
|
|
}
|
|
};
|
|
};
|