Skip to content

Commit

Permalink
Merge pull request #4 from kwooshung/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
kwooshung authored Jan 25, 2024
2 parents 3c2feef + 20c452e commit 5db4fa6
Show file tree
Hide file tree
Showing 10 changed files with 259 additions and 234 deletions.
2 changes: 1 addition & 1 deletion README.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
- 所有的函数有关路径的操作,都已进行了 `标准化处理 normalize`,你不用担心路径的格式问题;
- 尽可能不使用递归,有助于处理大量文件时,避免可能出现的栈溢出;
- 可按需引入,`esm` 模块化,支持天生支持 `树摇(tree-shaking)`,不用担心打包后的体积;
- 当然本项目才提供了 `commonjs` 规范的 `cjs` 版本;
- 当然本项目也提供了 `commonjs` 规范的 `cjs` 版本;
- 本项目中的所有函数,都是基于 `fs/promises` 实现;
- 只有1个第三方包依赖,`hound` 依赖于 [FileHound](https://github.com/nspragg/filehound),用于搜索文件;如果你不需要它,可以视为 `0` 个第三方包依赖;

Expand Down
1 change: 1 addition & 0 deletions changelogs/.history
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
1.0.3
1.0.2
1.0.1
1.0.0
4 changes: 4 additions & 0 deletions changelogs/CHANGELOG.en.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 🎉 1.0.3 `2024-01-25`
### 🐛 Fix
- Fix the wrong words, update dependencies ([#5ae9cd7](https://github.com/kwooshung/files/commit/5ae9cd70e57c7ee9ad6c20c9cc25698f99944174))

## 🎉 1.0.2 `2024-01-21`
### 🆕 Add
- Add .gitattributes, forced settings to LF ([#e48ae85](https://github.com/kwooshung/files/commit/e48ae85142cd177763fd79c0d2945c9bbde9cb3c))
Expand Down
4 changes: 4 additions & 0 deletions changelogs/CHANGELOG.ja.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 🎉 1.0.3 `2024-01-25`
### 🐛 Fix
- 間違った単語を修正し、依存関係を更新します ([#5ae9cd7](https://github.com/kwooshung/files/commit/5ae9cd70e57c7ee9ad6c20c9cc25698f99944174))

## 🎉 1.0.2 `2024-01-21`
### 🆕 Add
- .gitattributes、強制設定をLFに追加します ([#e48ae85](https://github.com/kwooshung/files/commit/e48ae85142cd177763fd79c0d2945c9bbde9cb3c))
Expand Down
4 changes: 4 additions & 0 deletions changelogs/CHANGELOG.ko.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 🎉 1.0.3 `2024-01-25`
### 🐛 Fix
- 잘못된 단어를 수정하고 종속성을 업데이트하십시오 ([#5ae9cd7](https://github.com/kwooshung/files/commit/5ae9cd70e57c7ee9ad6c20c9cc25698f99944174))

## 🎉 1.0.2 `2024-01-21`
### 🆕 Add
- .gitattributes, 강제 설정을 LF에 추가하십시오 ([#e48ae85](https://github.com/kwooshung/files/commit/e48ae85142cd177763fd79c0d2945c9bbde9cb3c))
Expand Down
4 changes: 4 additions & 0 deletions changelogs/CHANGELOG.ru.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 🎉 1.0.3 `2024-01-25`
### 🐛 Fix
- Исправить неправильные слова, обновить зависимости ([#5ae9cd7](https://github.com/kwooshung/files/commit/5ae9cd70e57c7ee9ad6c20c9cc25698f99944174))

## 🎉 1.0.2 `2024-01-21`
### 🆕 Add
- Добавить .gitattributes, принудительные настройки в LF ([#e48ae85](https://github.com/kwooshung/files/commit/e48ae85142cd177763fd79c0d2945c9bbde9cb3c))
Expand Down
4 changes: 4 additions & 0 deletions changelogs/CHANGELOG.zh-cn.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 🎉 1.0.3 `2024-01-25`
### 🐛 Fix
- 修复错误的单词,更新依赖项 ([#5ae9cd7](https://github.com/kwooshung/files/commit/5ae9cd70e57c7ee9ad6c20c9cc25698f99944174))

## 🎉 1.0.2 `2024-01-21`
### 🆕 Add
- 添加.gitAttributes,强制设置为LF ([#e48ae85](https://github.com/kwooshung/files/commit/e48ae85142cd177763fd79c0d2945c9bbde9cb3c))
Expand Down
4 changes: 4 additions & 0 deletions changelogs/CHANGELOG.zh-tw.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 🎉 1.0.3 `2024-01-25`
### 🐛 Fix
- 修復錯誤的單詞,更新依賴項 ([#5ae9cd7](https://github.com/kwooshung/files/commit/5ae9cd70e57c7ee9ad6c20c9cc25698f99944174))

## 🎉 1.0.2 `2024-01-21`
### 🆕 Add
- 添加.gitAttributes,強制設置為LF ([#e48ae85](https://github.com/kwooshung/files/commit/e48ae85142cd177763fd79c0d2945c9bbde9cb3c))
Expand Down
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@kwooshung/files",
"version": "1.0.2",
"version": "1.0.3",
"title": "files",
"description": "A convenient and efficient library for file operations.",
"private": false,
Expand Down Expand Up @@ -55,24 +55,24 @@
"node": ">=14.0.0"
},
"devDependencies": {
"@kwooshung/cvlar": "^1.3.6",
"@kwooshung/cvlar": "^1.3.7",
"@swc/core": "^1.3.105",
"@swc/jest": "^0.2.31",
"@types/jest": "^29.5.11",
"@types/node": "^20.11.5",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"commitlint": "^18.4.4",
"@types/node": "^20.11.6",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"commitlint": "^18.5.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^8.0.3",
"husky": "^9.0.1",
"jest": "^29.7.0",
"lint-staged": "^15.2.0",
"prettier": "^3.2.4",
"swc-loader": "^0.2.3",
"terser": "^5.27.0",
"ts-jest": "^29.1.1",
"ts-jest": "^29.1.2",
"ts-loader": "^9.5.1",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
Expand Down
Loading

0 comments on commit 5db4fa6

Please sign in to comment.