nhanh-pure-function 1.3.5 → 1.3.6

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +2 -2
  2. package/README.md +10 -0
  3. package/package.json +10 -2
package/CHANGELOG.md CHANGED
@@ -1,4 +1,4 @@
1
1
  # Changelog
2
2
 
3
- ## [1.3.5] - 2024-10-30
4
- - github-actions 使用尝试
3
+ ## [1.3.6] - 2024-10-30
4
+ - 添加 README.md
package/README.md ADDED
@@ -0,0 +1,10 @@
1
+ # nhanh-pure-function
2
+
3
+ 纯函数工具库,提供了一些常用的纯函数工具,帮助您在 JavaScript/TypeScript 项目中更高效地处理数据。
4
+
5
+ ## 安装
6
+
7
+ 您可以通过 npm 安装该库:
8
+
9
+ ```bash
10
+ npm install nhanh-pure-function
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nhanh-pure-function",
3
- "version": "1.3.5",
3
+ "version": "1.3.6",
4
4
  "description": "纯函数工具",
5
5
  "main": "lib/Index.js",
6
6
  "scripts": {
@@ -11,5 +11,13 @@
11
11
  "format"
12
12
  ],
13
13
  "author": "nhanh",
14
- "license": "MIT"
14
+ "license": "MIT",
15
+ "repository": {
16
+ "type": "git",
17
+ "url": "git+https://github.com/ADMINnhanh/nhanh-pure-function.git"
18
+ },
19
+ "bugs": {
20
+ "url": "https://github.com/ADMINnhanh/nhanh-pure-function/issues"
21
+ },
22
+ "homepage": "https://github.com/ADMINnhanh/nhanh-pure-function#readme"
15
23
  }