Skip to content

Commit

Permalink
docs
Browse files Browse the repository at this point in the history
  • Loading branch information
dogodo-cc committed Aug 16, 2024
1 parent c49a46b commit 1c14f5f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion packages/unzip/unzip.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export function unzipWin32(src, dist) {
return new Promise((resolve, reject) => {
//const child = spawn(join(root, 'unzip.exe'),['-n', src, '-d', dist]);

const child = spawn(join(root, '7za.exe'), ['x', '-y', '-aoa', src, `-o${dist}`]);
const child = spawn(join(root, '7za-2408.exe'), ['x', '-y', '-aoa', src, `-o${dist}`]);

child.stdout.on('data', () => {});
child.stderr.on('data', console.error);
Expand Down
6 changes: 4 additions & 2 deletions projects/document/docs/unzip/npm.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@
| GitHub stars | [![][ystar]][ygit] | [![][estar]][egit] | [![][astar]][agit] | [![][ustar]][ugit] | [![][arstar]][argit] |
| TypeScript support | [![][yts]][ygit] | [![][ets]][egit] | [![][ats]][agit] | [![][uts]][ugit] | [![][arts]][argit] |
| Last commit | [![][ycm]][ycm_a] | [![][ecm]][ecm_a] | [![][acm]][acm_a] | [![][ucm]][ucm_a] | [![][arcm]][arcm_a] |
| symlink support | :heavy_check_mark: | :heavy_check_mark: | :x: | ? | ? |
| symlink support | :heavy_check_mark: | :heavy_check_mark: | :x: | :question: | :question: |

<!-- https://gist.github.com/rxaviers/7360908 图标编码参考 -->

<!-- GITHUB -->

Expand Down Expand Up @@ -128,7 +130,7 @@
[ucm_a]: https://github.com/ZJONSSON/node-unzipper/commits
[arcm_a]: https://github.com/archiverjs/node-archiver/commits

选择的依据:
### 选择的依据:

- 软连接的支持(编辑器内部有软连接)
- 较少的依赖
Expand Down

0 comments on commit 1c14f5f

Please sign in to comment.