@inizioevoke/evosynth 2.0.1 → 2.0.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/package.json +4 -4
- package/samples/.evosynth.md +10 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inizioevoke/evosynth",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.3",
|
|
4
4
|
"author": "",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"description": "",
|
|
@@ -21,12 +21,12 @@
|
|
|
21
21
|
},
|
|
22
22
|
"devDependencies": {
|
|
23
23
|
"@types/node": "^25.3.0",
|
|
24
|
-
"aws-cdk-lib": "^2.253.1",
|
|
25
|
-
"constructs": "^10.5.1",
|
|
26
24
|
"typescript": "^5.9.3"
|
|
27
25
|
},
|
|
28
26
|
"dependencies": {
|
|
29
27
|
"@aws-cdk/toolkit-lib": "^1.25.2",
|
|
30
|
-
"
|
|
28
|
+
"aws-cdk-lib": "^2.253.1",
|
|
29
|
+
"commander": "^14.0.3",
|
|
30
|
+
"constructs": "^10.5.1"
|
|
31
31
|
}
|
|
32
32
|
}
|
package/samples/.evosynth.md
CHANGED
|
@@ -40,4 +40,14 @@ export async default function() {
|
|
|
40
40
|
export async default function() {
|
|
41
41
|
// ...
|
|
42
42
|
}
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
## CLI
|
|
46
|
+
|
|
47
|
+
```
|
|
48
|
+
npx evosynth <command> <env> --profile my-profile
|
|
49
|
+
```
|
|
50
|
+
```
|
|
51
|
+
npx evosynth synth dev --profile evoke
|
|
52
|
+
npx evosynth deploy dev --profile evoke
|
|
43
53
|
```
|