wattpm 2.33.0 → 2.34.0
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 -7
- package/schema.json +68 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wattpm",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.34.0",
|
|
4
4
|
"description": "The Node.js Application Server",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -35,11 +35,11 @@
|
|
|
35
35
|
"pino-pretty": "^13.0.0",
|
|
36
36
|
"split2": "^4.2.0",
|
|
37
37
|
"table": "^6.8.2",
|
|
38
|
-
"@platformatic/basic": "2.
|
|
39
|
-
"@platformatic/
|
|
40
|
-
"@platformatic/
|
|
41
|
-
"@platformatic/
|
|
42
|
-
"@platformatic/
|
|
38
|
+
"@platformatic/basic": "2.34.0",
|
|
39
|
+
"@platformatic/config": "2.34.0",
|
|
40
|
+
"@platformatic/control": "2.34.0",
|
|
41
|
+
"@platformatic/utils": "2.34.0",
|
|
42
|
+
"@platformatic/runtime": "2.34.0"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"borp": "^0.19.0",
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"neostandard": "^0.12.0",
|
|
50
50
|
"typescript": "^5.5.4",
|
|
51
51
|
"undici": "^7.0.0",
|
|
52
|
-
"@platformatic/node": "2.
|
|
52
|
+
"@platformatic/node": "2.34.0"
|
|
53
53
|
},
|
|
54
54
|
"scripts": {
|
|
55
55
|
"test": "npm run lint && borp --concurrency=1 --timeout=300000",
|
package/schema.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$id": "https://schemas.platformatic.dev/wattpm/2.
|
|
2
|
+
"$id": "https://schemas.platformatic.dev/wattpm/2.34.0.json",
|
|
3
3
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
4
4
|
"type": "object",
|
|
5
5
|
"properties": {
|
|
@@ -7,8 +7,19 @@
|
|
|
7
7
|
"type": "string"
|
|
8
8
|
},
|
|
9
9
|
"preload": {
|
|
10
|
-
"
|
|
11
|
-
|
|
10
|
+
"anyOf": [
|
|
11
|
+
{
|
|
12
|
+
"type": "string",
|
|
13
|
+
"resolvePath": true
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"type": "array",
|
|
17
|
+
"items": {
|
|
18
|
+
"type": "string",
|
|
19
|
+
"resolvePath": true
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
]
|
|
12
23
|
},
|
|
13
24
|
"entrypoint": {
|
|
14
25
|
"type": "string"
|
|
@@ -153,6 +164,24 @@
|
|
|
153
164
|
}
|
|
154
165
|
},
|
|
155
166
|
"additionalProperties": false
|
|
167
|
+
},
|
|
168
|
+
"preload": {
|
|
169
|
+
"anyOf": [
|
|
170
|
+
{
|
|
171
|
+
"type": "string",
|
|
172
|
+
"resolvePath": true
|
|
173
|
+
},
|
|
174
|
+
{
|
|
175
|
+
"type": "array",
|
|
176
|
+
"items": {
|
|
177
|
+
"type": "string",
|
|
178
|
+
"resolvePath": true
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
]
|
|
182
|
+
},
|
|
183
|
+
"nodeOptions": {
|
|
184
|
+
"type": "string"
|
|
156
185
|
}
|
|
157
186
|
}
|
|
158
187
|
}
|
|
@@ -321,6 +350,24 @@
|
|
|
321
350
|
"pnpm",
|
|
322
351
|
"yarn"
|
|
323
352
|
]
|
|
353
|
+
},
|
|
354
|
+
"preload": {
|
|
355
|
+
"anyOf": [
|
|
356
|
+
{
|
|
357
|
+
"type": "string",
|
|
358
|
+
"resolvePath": true
|
|
359
|
+
},
|
|
360
|
+
{
|
|
361
|
+
"type": "array",
|
|
362
|
+
"items": {
|
|
363
|
+
"type": "string",
|
|
364
|
+
"resolvePath": true
|
|
365
|
+
}
|
|
366
|
+
}
|
|
367
|
+
]
|
|
368
|
+
},
|
|
369
|
+
"nodeOptions": {
|
|
370
|
+
"type": "string"
|
|
324
371
|
}
|
|
325
372
|
}
|
|
326
373
|
}
|
|
@@ -499,6 +546,24 @@
|
|
|
499
546
|
"pnpm",
|
|
500
547
|
"yarn"
|
|
501
548
|
]
|
|
549
|
+
},
|
|
550
|
+
"preload": {
|
|
551
|
+
"anyOf": [
|
|
552
|
+
{
|
|
553
|
+
"type": "string",
|
|
554
|
+
"resolvePath": true
|
|
555
|
+
},
|
|
556
|
+
{
|
|
557
|
+
"type": "array",
|
|
558
|
+
"items": {
|
|
559
|
+
"type": "string",
|
|
560
|
+
"resolvePath": true
|
|
561
|
+
}
|
|
562
|
+
}
|
|
563
|
+
]
|
|
564
|
+
},
|
|
565
|
+
"nodeOptions": {
|
|
566
|
+
"type": "string"
|
|
502
567
|
}
|
|
503
568
|
}
|
|
504
569
|
}
|