wattpm 3.42.0 → 3.44.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/lib/commands/pprof.js +4 -4
- package/lib/commands/snapshot.js +1 -1
- package/package.json +5 -5
- package/schema.json +4 -1
package/lib/commands/pprof.js
CHANGED
|
@@ -168,20 +168,20 @@ export const help = {
|
|
|
168
168
|
description: 'Profile CPU or heap usage of running application',
|
|
169
169
|
options: [
|
|
170
170
|
{
|
|
171
|
-
|
|
171
|
+
usage: '--type, -t',
|
|
172
172
|
description: 'Profile type: "cpu" for CPU wall time (default) or "heap" for heap memory'
|
|
173
173
|
},
|
|
174
174
|
{
|
|
175
|
-
|
|
175
|
+
usage: '--source-maps, -s',
|
|
176
176
|
description: 'Enable source map support to resolve TypeScript and other transpiled code locations in profiles'
|
|
177
177
|
},
|
|
178
178
|
{
|
|
179
|
-
|
|
179
|
+
usage: '--node-modules-source-maps, -n',
|
|
180
180
|
description:
|
|
181
181
|
'Comma-separated list of node_modules packages to load source maps from (e.g., "next,@next/next-server")'
|
|
182
182
|
},
|
|
183
183
|
{
|
|
184
|
-
|
|
184
|
+
usage: '--dir, -d',
|
|
185
185
|
description:
|
|
186
186
|
'Directory to save the profile data to (default: current working directory). Only used with "stop" subcommand.'
|
|
187
187
|
}
|
package/lib/commands/snapshot.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wattpm",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.44.0",
|
|
4
4
|
"description": "The Node.js Application Server",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -30,9 +30,9 @@
|
|
|
30
30
|
"pino-pretty": "^13.0.0",
|
|
31
31
|
"split2": "^4.2.0",
|
|
32
32
|
"table": "^6.8.2",
|
|
33
|
-
"@platformatic/control": "3.
|
|
34
|
-
"@platformatic/foundation": "3.
|
|
35
|
-
"@platformatic/runtime": "3.
|
|
33
|
+
"@platformatic/control": "3.44.0",
|
|
34
|
+
"@platformatic/foundation": "3.44.0",
|
|
35
|
+
"@platformatic/runtime": "3.44.0"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
38
|
"cleaner-spec-reporter": "^0.5.0",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"neostandard": "^0.12.0",
|
|
45
45
|
"typescript": "^5.5.4",
|
|
46
46
|
"undici": "^7.0.0",
|
|
47
|
-
"@platformatic/node": "3.
|
|
47
|
+
"@platformatic/node": "3.44.0"
|
|
48
48
|
},
|
|
49
49
|
"engines": {
|
|
50
50
|
"node": ">=22.19.0"
|
package/schema.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$id": "https://schemas.platformatic.dev/wattpm/3.
|
|
2
|
+
"$id": "https://schemas.platformatic.dev/wattpm/3.44.0.json",
|
|
3
3
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
4
4
|
"title": "Platformatic Runtime Config",
|
|
5
5
|
"type": "object",
|
|
@@ -2751,6 +2751,9 @@
|
|
|
2751
2751
|
"type": "string"
|
|
2752
2752
|
}
|
|
2753
2753
|
},
|
|
2754
|
+
"envfile": {
|
|
2755
|
+
"type": "string"
|
|
2756
|
+
},
|
|
2754
2757
|
"sourceMaps": {
|
|
2755
2758
|
"type": "boolean",
|
|
2756
2759
|
"default": false
|