mirror of https://github.com/ghostfolio/ghostfolio
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
75 lines
2.6 KiB
75 lines
2.6 KiB
"use strict";
|
|
/**
|
|
* @license
|
|
* Copyright Google LLC All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
* found in the LICENSE file at https://angular.dev/license
|
|
*/
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.default = default_1;
|
|
const schematics_1 = require("@angular-devkit/schematics");
|
|
const schema_1 = require("./schema");
|
|
const AI_TOOLS = {
|
|
agents: {
|
|
rulesName: 'AGENTS.md',
|
|
directory: '.',
|
|
},
|
|
gemini: {
|
|
rulesName: 'GEMINI.md',
|
|
directory: '.gemini',
|
|
},
|
|
claude: {
|
|
rulesName: 'CLAUDE.md',
|
|
directory: '.claude',
|
|
},
|
|
copilot: {
|
|
rulesName: 'copilot-instructions.md',
|
|
directory: '.github',
|
|
},
|
|
windsurf: {
|
|
rulesName: 'guidelines.md',
|
|
directory: '.windsurf/rules',
|
|
},
|
|
jetbrains: {
|
|
rulesName: 'guidelines.md',
|
|
directory: '.junie',
|
|
},
|
|
// Cursor file has a front matter section.
|
|
cursor: {
|
|
rulesName: 'cursor.mdc',
|
|
directory: '.cursor/rules',
|
|
frontmatter: `---\ncontext: true\npriority: high\nscope: project\n---`,
|
|
},
|
|
};
|
|
function default_1({ tool }) {
|
|
return (tree, context) => {
|
|
if (!tool) {
|
|
return (0, schematics_1.noop)();
|
|
}
|
|
const rules = tool
|
|
.filter((tool) => tool !== schema_1.Tool.None)
|
|
.map((selectedTool) => {
|
|
const { rulesName, directory, frontmatter } = AI_TOOLS[selectedTool];
|
|
const path = `${directory}/${rulesName}`;
|
|
if (tree.exists(path)) {
|
|
const toolName = schematics_1.strings.classify(selectedTool);
|
|
context.logger.warn(`Skipping configuration file for '${toolName}' at '${path}' because it already exists.\n` +
|
|
'This is to prevent overwriting a potentially customized file. ' +
|
|
'If you want to regenerate it with Angular recommended defaults, please delete the existing file and re-run the command.\n' +
|
|
'You can review the latest recommendations at https://angular.dev/ai/develop-with-ai.');
|
|
return (0, schematics_1.noop)();
|
|
}
|
|
return (0, schematics_1.mergeWith)((0, schematics_1.apply)((0, schematics_1.url)('./files'), [
|
|
(0, schematics_1.applyTemplates)({
|
|
...schematics_1.strings,
|
|
rulesName,
|
|
frontmatter,
|
|
}),
|
|
(0, schematics_1.move)(directory),
|
|
]));
|
|
});
|
|
return (0, schematics_1.chain)(rules);
|
|
};
|
|
}
|
|
//# sourceMappingURL=index.js.map
|