@db-ux/agent-cli 4.0.0 → 4.0.1-1-540218c
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/CHANGELOG.md +5 -1
- package/build/index.js +5 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/build/index.js
CHANGED
|
@@ -98,10 +98,11 @@ ${content}
|
|
|
98
98
|
copilotFileContent = (copilotFileContent.slice(0, startIndex) + copilotFileContent.slice(endIndex + endMarker.length)).trim();
|
|
99
99
|
}
|
|
100
100
|
copilotFileContent += `
|
|
101
|
-
${startMarker}
|
|
102
|
-
|
|
103
|
-
${
|
|
104
|
-
|
|
101
|
+
${startMarker}
|
|
102
|
+
> **NOTE**: Always use "DB UX" components and variables as project's conventions
|
|
103
|
+
${copilotInstructionsContent}
|
|
104
|
+
${endMarker}
|
|
105
|
+
`;
|
|
105
106
|
fs.writeFileSync(copilotInstructionsPath, copilotFileContent);
|
|
106
107
|
}
|
|
107
108
|
};
|