@guanghechen/filesplit 2.0.1 → 2.0.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.
- package/CHANGELOG.md +32 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,40 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 2.0.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- chore: vitest config auto-load aliases and coverage thresholds; style/doc formatting updates
|
|
8
|
+
- Updated dependencies:
|
|
9
|
+
- @guanghechen/filepart@2.0.2
|
|
10
|
+
- @guanghechen/invariant@7.0.2
|
|
11
|
+
- @guanghechen/stream@2.0.2
|
|
12
|
+
|
|
3
13
|
All notable changes to this project will be documented in this file. See
|
|
4
14
|
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
15
|
|
|
16
|
+
## 2.0.1 (2025-02-07)
|
|
17
|
+
|
|
18
|
+
### Improvements
|
|
19
|
+
|
|
20
|
+
- Clean up build configs and standardize package exports
|
|
21
|
+
|
|
22
|
+
### Documentation
|
|
23
|
+
|
|
24
|
+
- Update README.md
|
|
25
|
+
|
|
26
|
+
### Miscellaneous
|
|
27
|
+
|
|
28
|
+
- Add LICENSE file
|
|
29
|
+
- Remove @guanghechen/fs dependency
|
|
30
|
+
- Migrate from lerna to changesets
|
|
31
|
+
|
|
32
|
+
## 2.0.0 (2025-01-15)
|
|
33
|
+
|
|
34
|
+
### Breaking Changes
|
|
35
|
+
|
|
36
|
+
- Rename package from file-split to filesplit
|
|
37
|
+
|
|
6
38
|
## 1.0.0-alpha.23 (2024-09-18)
|
|
7
39
|
|
|
8
40
|
- :wrench: chore: upgrade devDependencies and fix configs
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@guanghechen/filesplit",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.2",
|
|
4
4
|
"description": "File helper",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "guanghechen",
|
|
@@ -40,9 +40,9 @@
|
|
|
40
40
|
"README.md"
|
|
41
41
|
],
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@guanghechen/filepart": "^2.0.
|
|
44
|
-
"@guanghechen/invariant": "^7.0.
|
|
45
|
-
"@guanghechen/stream": "^2.0.
|
|
43
|
+
"@guanghechen/filepart": "^2.0.2",
|
|
44
|
+
"@guanghechen/invariant": "^7.0.2",
|
|
45
|
+
"@guanghechen/stream": "^2.0.2"
|
|
46
46
|
},
|
|
47
47
|
"scripts": {
|
|
48
48
|
"build": "rollup -c ../../rollup.config.mjs",
|