restafary 13.0.2 → 13.0.4
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/ChangeLog +17 -0
- package/package.json +11 -11
- package/server/restafary.js +1 -1
package/ChangeLog
CHANGED
|
@@ -1,3 +1,20 @@
|
|
|
1
|
+
2026.04.28, v13.0.4
|
|
2
|
+
|
|
3
|
+
feature:
|
|
4
|
+
- e2e712e restafary: webpack-cli v7.0.2
|
|
5
|
+
- 2d0429e restafary: redlint v6.4.1
|
|
6
|
+
- 9636d20 restafary: putout v42.4.6
|
|
7
|
+
- a159f7d restafary: ponse v8.0.1
|
|
8
|
+
- c5762bc restafary: madrun v13.0.1
|
|
9
|
+
- db72a47 restafary: eslint-plugin-putout v31.1.2
|
|
10
|
+
- 0cdb968 restafary: eslint v10.2.1
|
|
11
|
+
- 0641023 restafary: superc8 v12.3.1
|
|
12
|
+
|
|
13
|
+
2026.02.13, v13.0.3
|
|
14
|
+
|
|
15
|
+
feature:
|
|
16
|
+
- 29fb3da restafary: win32 v8.0.0
|
|
17
|
+
|
|
1
18
|
2026.02.13, v13.0.2
|
|
2
19
|
|
|
3
20
|
feature:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "restafary",
|
|
3
|
-
"version": "13.0.
|
|
3
|
+
"version": "13.0.4",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "REST for CRUD file operations",
|
|
6
6
|
"main": "server/restafary.js",
|
|
@@ -46,11 +46,11 @@
|
|
|
46
46
|
"mime-types": "^3.0.2",
|
|
47
47
|
"patchfile": "^5.0.0",
|
|
48
48
|
"pipe-io": "^4.0.1",
|
|
49
|
-
"ponse": "^
|
|
49
|
+
"ponse": "^8.0.1",
|
|
50
50
|
"pullout": "^5.0.1",
|
|
51
51
|
"redzip": "^4.0.0",
|
|
52
52
|
"try-to-catch": "^4.0.4",
|
|
53
|
-
"win32": "^
|
|
53
|
+
"win32": "^8.0.0"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
56
|
"@babel/cli": "^7.0.0",
|
|
@@ -60,25 +60,25 @@
|
|
|
60
60
|
"@cloudcmd/stub": "^5.0.0",
|
|
61
61
|
"@iocmd/wait": "^2.1.0",
|
|
62
62
|
"babel-loader": "^10.0.0",
|
|
63
|
-
"
|
|
64
|
-
"eslint": "^
|
|
65
|
-
"eslint-plugin-putout": "^30.0.2",
|
|
63
|
+
"eslint": "^10.2.1",
|
|
64
|
+
"eslint-plugin-putout": "^31.1.2",
|
|
66
65
|
"express": "^5.2.1",
|
|
67
|
-
"madrun": "^
|
|
66
|
+
"madrun": "^13.0.1",
|
|
68
67
|
"mock-require": "^3.0.2",
|
|
69
68
|
"nodemon": "^3.0.1",
|
|
70
|
-
"putout": "^
|
|
71
|
-
"redlint": "^
|
|
69
|
+
"putout": "^42.4.6",
|
|
70
|
+
"redlint": "^6.4.1",
|
|
72
71
|
"rimraf": "^6.1.2",
|
|
73
72
|
"serve-once": "^3.0.2",
|
|
73
|
+
"superc8": "^12.3.1",
|
|
74
74
|
"supertape": "^12.2.0",
|
|
75
75
|
"try-catch": "^4.0.9",
|
|
76
76
|
"webpack": "^5.11.0",
|
|
77
|
-
"webpack-cli": "^
|
|
77
|
+
"webpack-cli": "^7.0.2"
|
|
78
78
|
},
|
|
79
79
|
"repository": {
|
|
80
80
|
"type": "git",
|
|
81
|
-
"url": "https://github.com/coderaiser/node-restafary.git"
|
|
81
|
+
"url": "git+https://github.com/coderaiser/node-restafary.git"
|
|
82
82
|
},
|
|
83
83
|
"keywords": [
|
|
84
84
|
"rest",
|
package/server/restafary.js
CHANGED
|
@@ -7,7 +7,7 @@ import {
|
|
|
7
7
|
dirname,
|
|
8
8
|
} from 'node:path';
|
|
9
9
|
import {webToWin} from 'mellow';
|
|
10
|
-
import ponse from 'ponse';
|
|
10
|
+
import * as ponse from 'ponse';
|
|
11
11
|
import currify from 'currify';
|
|
12
12
|
import {tryToCatch as _tryToCatch} from 'try-to-catch';
|
|
13
13
|
import pipe from 'pipe-io';
|