@gencode/plugin-sdk 0.0.10 → 0.0.12

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 +37 -0
  2. package/package.json +5 -4
package/CHANGELOG.md ADDED
@@ -0,0 +1,37 @@
1
+ # @gencode/plugin-sdk
2
+
3
+ ## 0.0.12
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - Updated dependencies [059d077]
9
+ - @gencode/agents@0.2.0
10
+
11
+ ## 0.0.11
12
+
13
+ ### Patch Changes
14
+
15
+ - Updated dependencies [2908094]
16
+ - @gencode/agents@0.1.1
17
+
18
+ ## 0.0.10
19
+
20
+ ### Patch Changes
21
+
22
+ - 350b9d1: Add a publish-time changelog guard and include package changelogs in npm artifacts.
23
+ - Updated dependencies [8ef3f8f]
24
+ - Updated dependencies [839f628]
25
+ - Updated dependencies [350b9d1]
26
+ - Updated dependencies [a2149e3]
27
+ - Updated dependencies [6a154b5]
28
+ - Updated dependencies [5f15359]
29
+ - Updated dependencies [71b3e30]
30
+ - @gencode/agents@0.1.0
31
+ - @gencode/shared@0.1.0
32
+
33
+ ## 0.0.9
34
+
35
+ ### Patch Changes
36
+
37
+ - Establish the initial changelog baseline for the current published package version.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gencode/plugin-sdk",
3
- "version": "0.0.10",
3
+ "version": "0.0.12",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -11,14 +11,15 @@
11
11
  }
12
12
  },
13
13
  "files": [
14
- "dist"
14
+ "dist",
15
+ "CHANGELOG.md"
15
16
  ],
16
17
  "publishConfig": {
17
18
  "access": "public"
18
19
  },
19
20
  "dependencies": {
20
- "@gencode/agents": "0.0.53",
21
- "@gencode/shared": "0.0.19"
21
+ "@gencode/agents": "0.2.0",
22
+ "@gencode/shared": "0.1.0"
22
23
  },
23
24
  "devDependencies": {
24
25
  "typescript": "^5.9.3"