@dependabit/manifest 0.1.16 → 0.1.18

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 +18 -0
  2. package/package.json +9 -9
package/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # @dependabit/manifest
2
2
 
3
+ ## 0.1.18
4
+
5
+ ### Patch Changes
6
+
7
+ - [#145](https://github.com/pradeepmouli/dependabit/pull/145) [`0f27a09`](https://github.com/pradeepmouli/dependabit/commit/0f27a09215683c508cb5575ea41e5a8b602b7ab9) Thanks [@pradeepmouli](https://github.com/pradeepmouli)! - - fix(ci): generate changeset and keep TS6 pins in dep-update workflow
8
+ - chore(deps)(deps-dev): bump the code-quality group across 1 directory with 3 updates
9
+ - chore(deps)(deps-dev): bump tsx
10
+ - chore(deps)(deps): bump ignore from 7.0.5 to 7.0.9
11
+ - chore(deps)(deps-dev): bump vitepress
12
+
13
+ ## 0.1.17
14
+
15
+ ### Patch Changes
16
+
17
+ - [#127](https://github.com/pradeepmouli/dependabit/pull/127) [`74aac50`](https://github.com/pradeepmouli/dependabit/commit/74aac50256e0ac601779e68b5360cba4369db997) Thanks [@pradeepmouli](https://github.com/pradeepmouli)! - - chore: also drop .github/agents, prompts, skills, copilot from master
18
+ - chore: also drop specs/, .claude-plugin/ from master
19
+ - chore: drop AI tooling files from master
20
+
3
21
  ## 0.1.16
4
22
 
5
23
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dependabit/manifest",
3
- "version": "0.1.16",
3
+ "version": "0.1.18",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/pradeepmouli/dependabit.git",
@@ -21,14 +21,14 @@
21
21
  }
22
22
  },
23
23
  "dependencies": {
24
- "yaml": "^2.8.4",
25
- "zod": "^4.4.3"
24
+ "yaml": "^2.9.0",
25
+ "zod": "^4.6.5"
26
26
  },
27
27
  "devDependencies": {
28
- "@types/node": "^25.6.2",
29
- "tsx": "^4.21.0",
30
- "typescript": "^6.0.3",
31
- "vitest": "^4.1.5"
28
+ "@types/node": "^25.9.1",
29
+ "tsx": "^4.23.13",
30
+ "typescript": "^7.0.2",
31
+ "vitest": "^4.1.8"
32
32
  },
33
33
  "keywords": [
34
34
  "dependabit",
@@ -50,10 +50,10 @@
50
50
  "LICENSE"
51
51
  ],
52
52
  "scripts": {
53
- "build": "tsgo -p tsconfig.json",
53
+ "build": "tsc -p tsconfig.json",
54
54
  "clean": "rm -rf dist tsconfig.tsbuildinfo",
55
55
  "dev": "tsx watch src/index.ts",
56
- "type-check": "tsgo --noEmit -p tsconfig.json",
56
+ "type-check": "tsc --noEmit -p tsconfig.json",
57
57
  "test": "vitest run",
58
58
  "test:watch": "vitest"
59
59
  }