@platformatic/node 2.9.0 → 2.10.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/config.d.ts CHANGED
@@ -29,8 +29,6 @@ export interface PlatformaticNodeJsStackable {
29
29
  [k: string]: unknown;
30
30
  };
31
31
  level?: string;
32
- additionalProperties?: never;
33
- [k: string]: unknown;
34
32
  }[];
35
33
  options?: {
36
34
  [k: string]: unknown;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platformatic/node",
3
- "version": "2.9.0",
3
+ "version": "2.10.0",
4
4
  "description": "Platformatic Node.js Stackable",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -16,9 +16,9 @@
16
16
  "homepage": "https://github.com/platformatic/platformatic#readme",
17
17
  "dependencies": {
18
18
  "light-my-request": "^6.0.0",
19
- "@platformatic/config": "2.9.0",
20
- "@platformatic/basic": "2.9.0",
21
- "@platformatic/utils": "2.9.0"
19
+ "@platformatic/basic": "2.10.0",
20
+ "@platformatic/config": "2.10.0",
21
+ "@platformatic/utils": "2.10.0"
22
22
  },
23
23
  "devDependencies": {
24
24
  "borp": "^0.18.0",
@@ -30,8 +30,8 @@
30
30
  "neostandard": "^0.11.1",
31
31
  "tsx": "^4.19.0",
32
32
  "typescript": "^5.5.4",
33
- "@platformatic/service": "2.9.0",
34
- "@platformatic/composer": "2.9.0"
33
+ "@platformatic/composer": "2.10.0",
34
+ "@platformatic/service": "2.10.0"
35
35
  },
36
36
  "scripts": {
37
37
  "test": "npm run lint && borp --concurrency=1 --no-timeout",
package/schema.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "$id": "https://schemas.platformatic.dev/@platformatic/node/2.9.0.json",
2
+ "$id": "https://schemas.platformatic.dev/@platformatic/node/2.10.0.json",
3
3
  "$schema": "http://json-schema.org/draft-07/schema#",
4
4
  "title": "Platformatic Node.js Stackable",
5
5
  "type": "object",
@@ -54,17 +54,25 @@
54
54
  "type": "object",
55
55
  "properties": {
56
56
  "target": {
57
- "type": "string",
58
- "resolveModule": true
57
+ "anyOf": [
58
+ {
59
+ "type": "string",
60
+ "resolveModule": true
61
+ },
62
+ {
63
+ "type": "string",
64
+ "resolvePath": true
65
+ }
66
+ ]
59
67
  },
60
68
  "options": {
61
69
  "type": "object"
62
70
  },
63
71
  "level": {
64
72
  "type": "string"
65
- },
66
- "additionalProperties": false
67
- }
73
+ }
74
+ },
75
+ "additionalProperties": false
68
76
  }
69
77
  },
70
78
  "options": {