@ruvyxa/adapter-aws 1.0.30 → 1.0.31
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/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/package.json +4 -4
- package/src/index.ts +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import type { Adapter } from '@ruvyxa/core';
|
|
|
2
2
|
type AmplifyRuntime = 'nodejs20.x' | 'nodejs22.x' | 'nodejs24.x';
|
|
3
3
|
/** Options for AWS Amplify Hosting deployments. */
|
|
4
4
|
export interface AwsAdapterOptions {
|
|
5
|
-
/** Amplify compute runtime. @default "
|
|
5
|
+
/** Amplify compute runtime. @default "nodejs24.x" */
|
|
6
6
|
runtime?: AmplifyRuntime;
|
|
7
7
|
/**
|
|
8
8
|
* Emit the project-root `.amplify-hosting/` deployment bundle Amplify discovers.
|
package/dist/index.js
CHANGED
|
@@ -2,7 +2,7 @@ import { readFileSync } from 'node:fs';
|
|
|
2
2
|
import { CLIENT_BUNDLE_PREFIX, clientBuildOutput, IMMUTABLE_CACHE_CONTROL, PUBLIC_ASSET_CACHE_CONTROL, runtimeBuildPolicy, standaloneServerSource, validateBuildContext, } from '@ruvyxa/core';
|
|
3
3
|
/** Create an AWS Amplify Hosting static-plus-compute adapter for Ruvyxa. */
|
|
4
4
|
export function aws(options = {}) {
|
|
5
|
-
const runtime = options.runtime ?? '
|
|
5
|
+
const runtime = options.runtime ?? 'nodejs24.x';
|
|
6
6
|
const frameworkVersion = packageVersion();
|
|
7
7
|
return {
|
|
8
8
|
name: 'aws',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ruvyxa/adapter-aws",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.31",
|
|
4
4
|
"description": "Deploy full-stack Ruvyxa applications to AWS Amplify Hosting with native static and Node compute deployment output.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"type": "module",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
},
|
|
29
29
|
"homepage": "https://github.com/thirawat27/ruvyxa#readme",
|
|
30
30
|
"engines": {
|
|
31
|
-
"node": ">=
|
|
31
|
+
"node": ">=24.19.0"
|
|
32
32
|
},
|
|
33
33
|
"publishConfig": {
|
|
34
34
|
"access": "public"
|
|
@@ -40,10 +40,10 @@
|
|
|
40
40
|
}
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@ruvyxa/core": "^1.0.
|
|
43
|
+
"@ruvyxa/core": "^1.0.31"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@types/node": "
|
|
46
|
+
"@types/node": "24.13.3"
|
|
47
47
|
},
|
|
48
48
|
"scripts": {
|
|
49
49
|
"build": "tsc -p tsconfig.json",
|
package/src/index.ts
CHANGED
|
@@ -15,7 +15,7 @@ type AmplifyRuntime = 'nodejs20.x' | 'nodejs22.x' | 'nodejs24.x'
|
|
|
15
15
|
|
|
16
16
|
/** Options for AWS Amplify Hosting deployments. */
|
|
17
17
|
export interface AwsAdapterOptions {
|
|
18
|
-
/** Amplify compute runtime. @default "
|
|
18
|
+
/** Amplify compute runtime. @default "nodejs24.x" */
|
|
19
19
|
runtime?: AmplifyRuntime
|
|
20
20
|
/**
|
|
21
21
|
* Emit the project-root `.amplify-hosting/` deployment bundle Amplify discovers.
|
|
@@ -26,7 +26,7 @@ export interface AwsAdapterOptions {
|
|
|
26
26
|
|
|
27
27
|
/** Create an AWS Amplify Hosting static-plus-compute adapter for Ruvyxa. */
|
|
28
28
|
export function aws(options: AwsAdapterOptions = {}): Adapter {
|
|
29
|
-
const runtime = options.runtime ?? '
|
|
29
|
+
const runtime = options.runtime ?? 'nodejs24.x'
|
|
30
30
|
const frameworkVersion = packageVersion()
|
|
31
31
|
|
|
32
32
|
return {
|