mm_mysql 2.2.4 → 2.2.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.
- package/README.md +3 -4
- package/README_EN.md +478 -0
- package/db.js +497 -496
- package/eslint.config.js +235 -0
- package/index.js +601 -601
- package/package.json +12 -5
- package/sql.js +1390 -1276
- package/test.js +481 -485
package/package.json
CHANGED
|
@@ -1,15 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mm_mysql",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.6",
|
|
4
4
|
"description": "这是超级美眉mysql帮助函数模块,用于便捷操作mysql,使用await方式,可以避免嵌套函数",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"dependencies": {
|
|
7
|
-
"mm_expand": "^
|
|
8
|
-
"mysql2": "^3.
|
|
7
|
+
"mm_expand": "^2.0.0",
|
|
8
|
+
"mysql2": "^3.16.0"
|
|
9
9
|
},
|
|
10
10
|
"scripts": {
|
|
11
11
|
"start": "node index.js",
|
|
12
|
-
"test": "node test.js"
|
|
12
|
+
"test": "node test.js",
|
|
13
|
+
"lint": "eslint . --config eslint.config.js",
|
|
14
|
+
"lint:fix": "eslint . --config eslint.config.js --fix"
|
|
13
15
|
},
|
|
14
16
|
"repository": {
|
|
15
17
|
"type": "git",
|
|
@@ -31,5 +33,10 @@
|
|
|
31
33
|
"license": "ISC",
|
|
32
34
|
"engines": {
|
|
33
35
|
"node": ">=12.0.0"
|
|
36
|
+
},
|
|
37
|
+
"devDependencies": {
|
|
38
|
+
"eslint": "^9.39.2",
|
|
39
|
+
"eslint-plugin-jsdoc": "^61.5.0",
|
|
40
|
+
"mm_eslint": "^1.1.1"
|
|
34
41
|
}
|
|
35
|
-
}
|
|
42
|
+
}
|