@zwa73/utils 1.0.55 → 1.0.57
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 +2 -2
- package/postinstall.js +1 -3
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zwa73/utils",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.57",
|
|
4
4
|
"description": "my utils",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"test": "node test",
|
|
8
|
-
"postinstall": "
|
|
8
|
+
"postinstall": "node postinstall.js",
|
|
9
9
|
"release": "call release.bat"
|
|
10
10
|
},
|
|
11
11
|
"keywords": [
|
package/postinstall.js
CHANGED
|
@@ -26,9 +26,7 @@ function showUpgradeMessages(prevVersion, currentVersion, infoTable) {
|
|
|
26
26
|
|
|
27
27
|
//提示表
|
|
28
28
|
const infoTable = {
|
|
29
|
-
"1.0.
|
|
30
|
-
"1.0.47":"UtilFT.fileSearch 函数与返回值发生变动, 请使用fileSearchRegex 或 fileSearchGlob",
|
|
31
|
-
"1.0.55":"postinstall测试"
|
|
29
|
+
"1.0.47":"UtilFT.fileSearch 函数与返回值发生变动, 请使用fileSearchRegex 或 fileSearchGlob"
|
|
32
30
|
}
|
|
33
31
|
|
|
34
32
|
async function main(){
|