@ljharb/unused-files 0.1.0 → 0.1.1
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 +15 -0
- package/index.mjs +1 -0
- package/jsr.json +17 -0
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,21 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [v0.1.1](https://github.com/ljharb/unused-files/compare/v0.1.0...v0.1.1) - 2024-04-12
|
|
9
|
+
|
|
10
|
+
### Commits
|
|
11
|
+
|
|
12
|
+
- [Tests] add more test cases for `browser` and `bin` [`a93e847`](https://github.com/ljharb/unused-files/commit/a93e8473b8dad08f6498b47a4f9bd4440632cfb6)
|
|
13
|
+
- [meta] add jsr.json [`21f3d7c`](https://github.com/ljharb/unused-files/commit/21f3d7c74fb77b9ebba37589a085322c2d7f05e2)
|
|
14
|
+
- [Deps] update `knip`, `object.groupby` [`b898c4d`](https://github.com/ljharb/unused-files/commit/b898c4d45a5d3e946b6906d7eab7bffa73f125f3)
|
|
15
|
+
- Revert "[types] use the DT PR instead of waiting on the package" [`8f7ac05`](https://github.com/ljharb/unused-files/commit/8f7ac051180d98bc7950e002691367de00b52752)
|
|
16
|
+
- [Dev Deps] update `@arethetypeswrong/cli` [`7c75b15`](https://github.com/ljharb/unused-files/commit/7c75b15fac89bcf0273a59e013ea953c2568475b)
|
|
17
|
+
- [Deps] unpin `knip` [`79f3af3`](https://github.com/ljharb/unused-files/commit/79f3af39a58fb7019d25dba906548e7a85a6bd86)
|
|
18
|
+
- [Dev Deps] update `@arethetypeswrong/cli` [`9371983`](https://github.com/ljharb/unused-files/commit/9371983007a762de5601d6750e2e192f9f80e51a)
|
|
19
|
+
- [meta] fix `version` scripts [`6f3de34`](https://github.com/ljharb/unused-files/commit/6f3de34fe90cefec79b1f3553d2429433b2a9e12)
|
|
20
|
+
- [Dev Deps] pin `knip` [`7ed9d42`](https://github.com/ljharb/unused-files/commit/7ed9d4268e87f33fc2c57e077bff2567503b7c7a)
|
|
21
|
+
- [Dev Deps] fix eslint dep [`b48b85d`](https://github.com/ljharb/unused-files/commit/b48b85d787dc4bc481beb13fe87c872b6616102c)
|
|
22
|
+
|
|
8
23
|
## v0.1.0 - 2024-03-13
|
|
9
24
|
|
|
10
25
|
### Commits
|
package/index.mjs
CHANGED
package/jsr.json
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@ljharb/unused-files",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"bin": "./bin.mjs",
|
|
5
|
+
"exports": {
|
|
6
|
+
"./package.json": "./package.json"
|
|
7
|
+
},
|
|
8
|
+
"publish": {
|
|
9
|
+
"include": ["**/*"],
|
|
10
|
+
"exclude": [
|
|
11
|
+
".github/workflows",
|
|
12
|
+
".eslintrc",
|
|
13
|
+
".nycrc",
|
|
14
|
+
"test"
|
|
15
|
+
]
|
|
16
|
+
}
|
|
17
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ljharb/unused-files",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "List unused files in your package.",
|
|
5
5
|
"bin": "./bin.mjs",
|
|
6
6
|
"main": false,
|
|
@@ -37,25 +37,25 @@
|
|
|
37
37
|
},
|
|
38
38
|
"homepage": "https://github.com/ljharb/unused-files#readme",
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"knip": "^5.
|
|
40
|
+
"knip": "^5.9.4",
|
|
41
41
|
"micromatch": "^4.0.5",
|
|
42
|
-
"object.groupby": "^1.0.
|
|
42
|
+
"object.groupby": "^1.0.3"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
|
-
"@arethetypeswrong/cli": "^0.15.
|
|
45
|
+
"@arethetypeswrong/cli": "^0.15.3",
|
|
46
|
+
"@jest/types": "^29.6.3",
|
|
46
47
|
"@ljharb/eslint-config": "^21.1.0",
|
|
47
48
|
"@ljharb/tsconfig": "^0.2.0",
|
|
48
49
|
"@types/micromatch": "^4.0.6",
|
|
49
|
-
"@types/object.groupby": "
|
|
50
|
+
"@types/object.groupby": "^1.0.4",
|
|
50
51
|
"@types/tape": "^5.6.4",
|
|
51
52
|
"@types/webpack": "^5.28.5",
|
|
52
53
|
"aud": "^2.0.4",
|
|
53
54
|
"auto-changelog": "^2.4.0",
|
|
54
55
|
"c8": "^9.1.0",
|
|
55
|
-
"eslint": "
|
|
56
|
+
"eslint": "=8.8.0",
|
|
56
57
|
"in-publish": "^2.0.1",
|
|
57
58
|
"npmignore": "^0.3.1",
|
|
58
|
-
"playwright": "^1.42.1",
|
|
59
59
|
"safe-publish-latest": "^2.0.0",
|
|
60
60
|
"tape": "^5.7.5",
|
|
61
61
|
"typescript": "next"
|