@dependabit/manifest 0.1.13 → 0.1.14
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.
- package/CHANGELOG.md +6 -0
- package/package.json +2 -2
- package/src/manifest.test.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @dependabit/manifest
|
|
2
2
|
|
|
3
|
+
## 0.1.14
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#76](https://github.com/pradeepmouli/dependabit/pull/76) [`7952538`](https://github.com/pradeepmouli/dependabit/commit/7952538578b97472f9da49056db535abf8c6a26a) Thanks [@pradeepmouli](https://github.com/pradeepmouli)! - - test: trigger CI pipeline
|
|
8
|
+
|
|
3
9
|
## 0.1.13
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dependabit/manifest",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.14",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "https://github.com/pradeepmouli/dependabit",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"license": "MIT",
|
|
35
35
|
"scripts": {
|
|
36
36
|
"build": "tsgo -p tsconfig.json",
|
|
37
|
-
"clean": "rm -rf dist",
|
|
37
|
+
"clean": "rm -rf dist tsconfig.tsbuildinfo",
|
|
38
38
|
"dev": "tsx watch src/index.ts",
|
|
39
39
|
"type-check": "tsgo --noEmit -p tsconfig.json",
|
|
40
40
|
"test": "vitest run",
|
package/src/manifest.test.ts
CHANGED
|
@@ -59,7 +59,7 @@ describe('Manifest Operations Tests', () => {
|
|
|
59
59
|
const invalid = { version: '2.0.0' } as any;
|
|
60
60
|
const path = join(TEST_DIR, 'manifest.json');
|
|
61
61
|
|
|
62
|
-
await expect(writeManifest(path, invalid)).rejects.toThrow();
|
|
62
|
+
await expect(writeManifest(path, invalid, { strict: true })).rejects.toThrow();
|
|
63
63
|
});
|
|
64
64
|
});
|
|
65
65
|
|