@daysnap/utils 0.0.42 → 0.0.43
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/README.md +7 -4
- package/package.json +9 -2
package/README.md
CHANGED
|
@@ -4,12 +4,15 @@
|
|
|
4
4
|
|
|
5
5
|
<h1 align="center">@daysnap/utils</h1>
|
|
6
6
|
|
|
7
|
-
<p align="center"
|
|
7
|
+
<p align="center">日常工作中常用的工具函数</p>
|
|
8
8
|
|
|
9
9
|
<p align="center">
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
10
|
+
<a href="https://www.npmjs.org/package/@daysnap/utils">
|
|
11
|
+
<img src="https://img.shields.io/npm/v/@daysnap/utils.svg" alt="npm version" />
|
|
12
|
+
</a>
|
|
13
|
+
<a href="https://npmcharts.com/compare/@daysnap/utils">
|
|
14
|
+
<img src="https://img.shields.io/npm/dm/@daysnap/utils.svg">
|
|
15
|
+
</a>
|
|
13
16
|
</p>
|
|
14
17
|
|
|
15
18
|
|
package/package.json
CHANGED
|
@@ -1,10 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@daysnap/utils",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.43",
|
|
4
4
|
"description": "通用的工具库",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"module": "es/index.js",
|
|
7
|
-
"
|
|
7
|
+
"types": "es/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"import": "./es/index.js",
|
|
11
|
+
"require": "./lib/index.js"
|
|
12
|
+
},
|
|
13
|
+
"./*": "./*"
|
|
14
|
+
},
|
|
8
15
|
"scripts": {
|
|
9
16
|
"gen": "plop --plopfile ./scripts/gen.js --force",
|
|
10
17
|
"del": "plop --plopfile ./scripts/del.js --force",
|