@platformatic/node 3.13.0 → 3.13.1
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/capability.js +2 -1
- package/package.json +6 -6
- package/schema.json +1 -1
package/lib/capability.js
CHANGED
|
@@ -362,7 +362,8 @@ export class NodeCapability extends BaseCapability {
|
|
|
362
362
|
|
|
363
363
|
const { entrypoint, hadEntrypointField } = await getEntrypointInformation(this.root)
|
|
364
364
|
|
|
365
|
-
|
|
365
|
+
// Only show the warning once
|
|
366
|
+
if (this.workerId === 0) {
|
|
366
367
|
if (!entrypoint) {
|
|
367
368
|
this.logger.error(
|
|
368
369
|
`The application "${this.applicationId}" had no valid entrypoint defined in the package.json file and no valid entrypoint file was found.`
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@platformatic/node",
|
|
3
|
-
"version": "3.13.
|
|
3
|
+
"version": "3.13.1",
|
|
4
4
|
"description": "Platformatic Node.js Capability",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -18,9 +18,9 @@
|
|
|
18
18
|
"@watchable/unpromise": "^1.0.2",
|
|
19
19
|
"json5": "^2.2.3",
|
|
20
20
|
"light-my-request": "^6.0.0",
|
|
21
|
-
"@platformatic/
|
|
22
|
-
"@platformatic/
|
|
23
|
-
"@platformatic/
|
|
21
|
+
"@platformatic/basic": "3.13.1",
|
|
22
|
+
"@platformatic/generators": "3.13.1",
|
|
23
|
+
"@platformatic/foundation": "3.13.1"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
26
|
"cleaner-spec-reporter": "^0.5.0",
|
|
@@ -32,8 +32,8 @@
|
|
|
32
32
|
"neostandard": "^0.12.0",
|
|
33
33
|
"tsx": "^4.19.0",
|
|
34
34
|
"typescript": "^5.5.4",
|
|
35
|
-
"@platformatic/service": "3.13.
|
|
36
|
-
"@platformatic/gateway": "3.13.
|
|
35
|
+
"@platformatic/service": "3.13.1",
|
|
36
|
+
"@platformatic/gateway": "3.13.1"
|
|
37
37
|
},
|
|
38
38
|
"engines": {
|
|
39
39
|
"node": ">=22.19.0"
|
package/schema.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$id": "https://schemas.platformatic.dev/@platformatic/node/3.13.
|
|
2
|
+
"$id": "https://schemas.platformatic.dev/@platformatic/node/3.13.1.json",
|
|
3
3
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
4
4
|
"title": "Platformatic Node.js Config",
|
|
5
5
|
"type": "object",
|