@way_marks/cli 4.4.1 → 4.4.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.
@@ -354,7 +354,7 @@ async function run() {
354
354
  const gitignoreContent = fs.existsSync(gitignorePath)
355
355
  ? fs.readFileSync(gitignorePath, 'utf8')
356
356
  : '';
357
- const linesToAdd = ['.waymark/', 'waymark.db', 'data/waymark.db']
357
+ const linesToAdd = ['.waymark/']
358
358
  .filter(line => !gitignoreContent.includes(line));
359
359
  if (linesToAdd.length > 0) {
360
360
  const section = '\n# Waymark\n' + linesToAdd.join('\n') + '\n';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@way_marks/cli",
3
- "version": "4.4.1",
3
+ "version": "4.4.2",
4
4
  "description": "Control what AI agents can do in your codebase",
5
5
  "author": "Waymark <hello@waymarks.dev>",
6
6
  "license": "MIT",
@@ -43,7 +43,7 @@
43
43
  ]
44
44
  },
45
45
  "dependencies": {
46
- "@way_marks/server": "4.4.1"
46
+ "@way_marks/server": "4.4.2"
47
47
  },
48
48
  "devDependencies": {
49
49
  "@types/jest": "^30.0.0",