@db-ux/agent-cli 3.1.18 → 3.1.19

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +13 -0
  2. package/package.json +4 -3
package/CHANGELOG.md ADDED
@@ -0,0 +1,13 @@
1
+ # @db-ux/agent-cli
2
+
3
+ ## 3.1.19
4
+
5
+ _version bump_
6
+
7
+
8
+ ## 3.1.18
9
+
10
+ ### Patch Changes
11
+
12
+ - enabled [`@db-ux/agent-cli`](https://www.npmjs.com/package/@db-ux/agent-cli) for every package - [see commit 0233048](https://github.com/db-ux-design-system/core-web/commit/023304869e61f5a506dca66a22d69e5f3d70f4d0):
13
+ - auto-generate/auto-update `.github/copilot-instructions.md`, to ensure GitHub Copilot uses DB UX Components for code generation
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@db-ux/agent-cli",
3
- "version": "3.1.18",
3
+ "version": "3.1.19",
4
4
  "type": "module",
5
5
  "description": "CLI for DB UX Design System generate AI agent instructions",
6
6
  "repository": {
@@ -13,13 +13,14 @@
13
13
  },
14
14
  "main": "build/index.js",
15
15
  "files": [
16
- "build",
17
- "CHANGELOG.md"
16
+ "CHANGELOG.md",
17
+ "build"
18
18
  ],
19
19
  "scripts": {
20
20
  "build": "node esbuild.js",
21
21
  "copy-build": "npm-run-all copy-build:*",
22
22
  "copy-build:build": "cpr build ../../build-outputs/agent-cli/build --overwrite",
23
+ "copy-build:changelog": "cpr CHANGELOG.md ../../build-outputs/agent-cli/CHANGELOG.md --overwrite",
23
24
  "copy-build:package.json": "cpr package.json ../../build-outputs/agent-cli/package.json --overwrite",
24
25
  "copy-build:readme": "cpr README.md ../../build-outputs/agent-cli/README.md --overwrite",
25
26
  "test": "vitest run --config vitest.config.ts",