@platformatic/next 3.0.0-alpha.1 → 3.0.0-alpha.3
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/index.js +1 -1
- package/lib/caching/valkey.js +1 -1
- package/lib/schema.js +2 -2
- package/package.json +8 -5
- package/schema.json +2 -1
package/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { transform as basicTransform, resolve, validationOptions } from '@platformatic/basic'
|
|
2
|
-
import { kMetadata, loadConfiguration as utilsLoadConfiguration } from '@platformatic/
|
|
2
|
+
import { kMetadata, loadConfiguration as utilsLoadConfiguration } from '@platformatic/foundation'
|
|
3
3
|
import { schema } from './lib/schema.js'
|
|
4
4
|
import { NextStackable } from './lib/stackable.js'
|
|
5
5
|
|
package/lib/caching/valkey.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { buildPinoFormatters, buildPinoTimestamp, ensureLoggableError } from '@platformatic/
|
|
1
|
+
import { buildPinoFormatters, buildPinoTimestamp, ensureLoggableError } from '@platformatic/foundation'
|
|
2
2
|
import { Redis } from 'iovalkey'
|
|
3
3
|
import { pack, unpack } from 'msgpackr'
|
|
4
4
|
import { existsSync, readFileSync } from 'node:fs'
|
package/lib/schema.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { schemaComponents as basicSchemaComponents } from '@platformatic/basic'
|
|
2
|
-
import { schemaComponents as utilsSchemaComponents } from '@platformatic/
|
|
2
|
+
import { schemaComponents as utilsSchemaComponents } from '@platformatic/foundation'
|
|
3
3
|
import { readFileSync } from 'node:fs'
|
|
4
4
|
import { resolve } from 'node:path'
|
|
5
5
|
|
|
@@ -62,7 +62,7 @@ export const schema = {
|
|
|
62
62
|
logger: utilsSchemaComponents.logger,
|
|
63
63
|
server: utilsSchemaComponents.server,
|
|
64
64
|
watch: basicSchemaComponents.watch,
|
|
65
|
-
application: basicSchemaComponents.
|
|
65
|
+
application: basicSchemaComponents.buildableApplication,
|
|
66
66
|
runtime: utilsSchemaComponents.wrappedRuntime,
|
|
67
67
|
next,
|
|
68
68
|
cache
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@platformatic/next",
|
|
3
|
-
"version": "3.0.0-alpha.
|
|
3
|
+
"version": "3.0.0-alpha.3",
|
|
4
4
|
"description": "Platformatic Next.js Stackable",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -23,8 +23,8 @@
|
|
|
23
23
|
"iovalkey": "^0.3.0",
|
|
24
24
|
"msgpackr": "^1.11.2",
|
|
25
25
|
"semver": "^7.6.3",
|
|
26
|
-
"@platformatic/basic": "3.0.0-alpha.
|
|
27
|
-
"@platformatic/
|
|
26
|
+
"@platformatic/basic": "3.0.0-alpha.3",
|
|
27
|
+
"@platformatic/foundation": "3.0.0-alpha.3"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"@fastify/reply-from": "^12.0.0",
|
|
@@ -38,8 +38,11 @@
|
|
|
38
38
|
"next": "^15.0.0",
|
|
39
39
|
"typescript": "^5.5.4",
|
|
40
40
|
"ws": "^8.18.0",
|
|
41
|
-
"@platformatic/composer": "3.0.0-alpha.
|
|
42
|
-
"@platformatic/service": "3.0.0-alpha.
|
|
41
|
+
"@platformatic/composer": "3.0.0-alpha.3",
|
|
42
|
+
"@platformatic/service": "3.0.0-alpha.3"
|
|
43
|
+
},
|
|
44
|
+
"engines": {
|
|
45
|
+
"node": ">=22.18.0"
|
|
43
46
|
},
|
|
44
47
|
"scripts": {
|
|
45
48
|
"test": "npm run lint && borp --concurrency=1 --timeout 1200000",
|
package/schema.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$id": "https://schemas.platformatic.dev/@platformatic/next/3.0.0-alpha.
|
|
2
|
+
"$id": "https://schemas.platformatic.dev/@platformatic/next/3.0.0-alpha.3.json",
|
|
3
3
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
4
4
|
"title": "Platformatic Next.js Config",
|
|
5
5
|
"type": "object",
|
|
@@ -362,6 +362,7 @@
|
|
|
362
362
|
}
|
|
363
363
|
},
|
|
364
364
|
"additionalProperties": false,
|
|
365
|
+
"required": [],
|
|
365
366
|
"default": {}
|
|
366
367
|
},
|
|
367
368
|
"runtime": {
|