@venturekit/infra 0.0.0-dev.20260312002737 → 0.0.0-dev.20260312012510
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/README.md +4 -4
- package/dist/venture.d.ts +1 -1
- package/dist/venture.js +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
> **Warning:** This package is in active development and not production-ready. APIs may change without notice.
|
|
4
4
|
|
|
5
|
-
Infrastructure package for [VentureKit](https://venturekit.dev) —
|
|
5
|
+
Infrastructure package for [VentureKit](https://venturekit.dev) — CDK constructs for AWS.
|
|
6
6
|
|
|
7
7
|
## Installation
|
|
8
8
|
|
|
@@ -16,11 +16,11 @@ npm install @venturekit/infra@dev
|
|
|
16
16
|
|
|
17
17
|
- Validates your configuration
|
|
18
18
|
- Discovers file-based routes
|
|
19
|
-
- Translates infrastructure intents into AWS
|
|
19
|
+
- Translates infrastructure intents into AWS CDK constructs
|
|
20
20
|
- Creates Lambda functions, API Gateway, VPC, WebSocket API, and more
|
|
21
|
-
- Hides all
|
|
21
|
+
- Hides all CDK complexity behind a clean, declarative API
|
|
22
22
|
|
|
23
|
-
Consumers never interact with
|
|
23
|
+
Consumers never interact with CDK directly — `@venturekit/infra` is the abstraction layer.
|
|
24
24
|
|
|
25
25
|
## Usage
|
|
26
26
|
|
package/dist/venture.d.ts
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
* Architecture:
|
|
8
8
|
* - `vk dev` → CLI reads _routesDir + _infrastructure, starts local HTTP server + Docker
|
|
9
9
|
* - `vk deploy` → CLI reads metadata, generates CDK app, runs `cdk deploy`
|
|
10
|
-
* -
|
|
10
|
+
* - Infrastructure lives in CDK VentureStack
|
|
11
11
|
*/
|
|
12
12
|
import { BaseConfig, SecurityConfig, EnvConfigInput, ResolvedConfig, VentureIntent } from '@venturekit/core';
|
|
13
13
|
/**
|
package/dist/venture.js
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
* Architecture:
|
|
9
9
|
* - `vk dev` → CLI reads _routesDir + _infrastructure, starts local HTTP server + Docker
|
|
10
10
|
* - `vk deploy` → CLI reads metadata, generates CDK app, runs `cdk deploy`
|
|
11
|
-
* -
|
|
11
|
+
* - Infrastructure lives in CDK VentureStack
|
|
12
12
|
*/
|
|
13
13
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
14
|
exports.defineVenture = defineVenture;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@venturekit/infra",
|
|
3
|
-
"version": "0.0.0-dev.
|
|
3
|
+
"version": "0.0.0-dev.20260312012510",
|
|
4
4
|
"description": "VentureKit infrastructure - AWS CDK constructs",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
],
|
|
38
38
|
"license": "Apache-2.0",
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@venturekit/core": "0.0.0-dev.
|
|
40
|
+
"@venturekit/core": "0.0.0-dev.20260312012510",
|
|
41
41
|
"aws-cdk-lib": "^2.170.0",
|
|
42
42
|
"constructs": "^10.4.0"
|
|
43
43
|
},
|