retry-async-wrapper 1.0.0 → 1.0.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/package.json +7 -2
package/package.json
CHANGED
|
@@ -1,10 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "retry-async-wrapper",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "基于 retry 二次封装的重试包,保留了 retry 的所有功能,简化了使用方式",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"private": false,
|
|
7
7
|
"dependencies": {
|
|
8
8
|
"retry": "^0.13.1"
|
|
9
|
-
}
|
|
9
|
+
},
|
|
10
|
+
"keywords": [
|
|
11
|
+
"retry",
|
|
12
|
+
"async-retry",
|
|
13
|
+
"async"
|
|
14
|
+
]
|
|
10
15
|
}
|