@db-ux/agent-cli 4.0.1 → 4.0.2
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 +7 -1
- package/build/index.js +5 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,16 @@
|
|
|
1
1
|
# @db-ux/agent-cli
|
|
2
2
|
|
|
3
|
+
## 4.0.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- chore: update instructions files for better copilot outputs - [see commit 797a114](https://github.com/db-ux-design-system/core-web/commit/797a114d7abc680667276f8ffc2f7f4482d89d3e):
|
|
8
|
+
- fix: add some missing variables
|
|
9
|
+
|
|
3
10
|
## 4.0.1
|
|
4
11
|
|
|
5
12
|
_version bump_
|
|
6
13
|
|
|
7
|
-
|
|
8
14
|
## 4.0.0
|
|
9
15
|
|
|
10
16
|
_version bump_
|
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
|
};
|