@dependabit/test-utils 0.1.17 → 0.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 +18 -0
  2. package/package.json +7 -7
package/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # @dependabit/test-utils
2
2
 
3
+ ## 0.1.19
4
+
5
+ ### Patch Changes
6
+
7
+ - [#164](https://github.com/pradeepmouli/dependabit/pull/164) [`b6d3f6d`](https://github.com/pradeepmouli/dependabit/commit/b6d3f6d7eeea7d690458f9c95d88b54018d15139) Thanks [@pradeepmouli](https://github.com/pradeepmouli)! - - fix(ci): remove duplicate 'with:' key in Setup pnpm step
8
+
9
+ - - chore(deps): update runtime dependencies
10
+
11
+ ## 0.1.18
12
+
13
+ ### Patch Changes
14
+
15
+ - [#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
16
+ - chore(deps)(deps-dev): bump the code-quality group across 1 directory with 3 updates
17
+ - chore(deps)(deps-dev): bump tsx
18
+ - chore(deps)(deps): bump ignore from 7.0.5 to 7.0.9
19
+ - chore(deps)(deps-dev): bump vitepress
20
+
3
21
  ## 0.1.17
4
22
 
5
23
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dependabit/test-utils",
3
- "version": "0.1.17",
3
+ "version": "0.1.19",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/pradeepmouli/dependabit.git",
@@ -29,12 +29,12 @@
29
29
  }
30
30
  },
31
31
  "devDependencies": {
32
- "@types/node": "^25.8.0",
33
- "typescript": "^6.0.3",
34
- "vitest": "^4.1.6"
32
+ "@types/node": "^25.9.1",
33
+ "typescript": "^7.0.2",
34
+ "vitest": "^5.0.1"
35
35
  },
36
36
  "peerDependencies": {
37
- "vitest": "^4.0.0"
37
+ "vitest": "^5.0.1"
38
38
  },
39
39
  "keywords": [
40
40
  "dependabit",
@@ -56,8 +56,8 @@
56
56
  "LICENSE"
57
57
  ],
58
58
  "scripts": {
59
- "build": "tsgo -p tsconfig.json",
59
+ "build": "tsc -p tsconfig.json",
60
60
  "clean": "rm -rf dist tsconfig.tsbuildinfo",
61
- "type-check": "tsgo --noEmit -p tsconfig.json"
61
+ "type-check": "tsc --noEmit -p tsconfig.json"
62
62
  }
63
63
  }