agent-conf 0.1.2 → 1.0.0

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/dist/index.js +1 -1
  2. package/package.json +10 -6
package/dist/index.js CHANGED
@@ -66,7 +66,7 @@ var CONFIG_DIR = ".agent-conf";
66
66
  var LOCKFILE_NAME = "lockfile.json";
67
67
  var CLI_VERSION = "0.1.0";
68
68
  function getBuildCommit() {
69
- return true ? "e0d4bb949d99b7f075cc60b519b46c1ab9fd8cc3" : "unknown";
69
+ return true ? "51afc0887a58773fcdbc2752b15fb5c14b726821" : "unknown";
70
70
  }
71
71
  function getLockfilePath(targetDir) {
72
72
  return path.join(targetDir, CONFIG_DIR, LOCKFILE_NAME);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-conf",
3
- "version": "0.1.2",
3
+ "version": "1.0.0",
4
4
  "description": "CLI utility to sync AI agent configurations across repositories",
5
5
  "author": "Julian Pani",
6
6
  "type": "module",
@@ -28,9 +28,8 @@
28
28
  "typecheck": "tsc --noEmit",
29
29
  "prepublishOnly": "pnpm run build",
30
30
  "install:global": "pnpm build && npm install -g .",
31
- "changeset": "changeset",
32
- "version": "changeset version",
33
- "release": "pnpm build && changeset publish"
31
+ "release": "semantic-release",
32
+ "release:dry-run": "semantic-release --dry-run"
34
33
  },
35
34
  "dependencies": {
36
35
  "@clack/prompts": "^0.7.0",
@@ -45,8 +44,13 @@
45
44
  },
46
45
  "devDependencies": {
47
46
  "@biomejs/biome": "^2.3.13",
48
- "@changesets/changelog-github": "^0.5.2",
49
- "@changesets/cli": "^2.29.8",
47
+ "@commitlint/cli": "^19.0.0",
48
+ "@commitlint/config-conventional": "^19.0.0",
49
+ "@semantic-release/changelog": "^6.0.3",
50
+ "@semantic-release/exec": "^6.0.3",
51
+ "@semantic-release/git": "^10.0.1",
52
+ "conventional-changelog-conventionalcommits": "^8.0.0",
53
+ "semantic-release": "^24.0.0",
50
54
  "@types/node": "^20.14.0",
51
55
  "@types/tabtab": "^3.0.4",
52
56
  "tsup": "^8.1.0",