create-webiny-project 6.3.0-beta.1 → 6.3.0-beta.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/_templates/aws/ddb/webiny.config.tsx +4 -0
- package/_templates/aws/ddb-os/webiny.config.tsx +4 -0
- package/package.json +12 -10
- package/services/SetupYarn/binaries/yarn-4.14.1.cjs +940 -0
- package/services/SetupYarn/binaries/{yarn-4.10.2.d.cts → yarn-4.14.1.d.cts} +1 -1
- package/services/SetupYarn.js +1 -1
- package/services/SetupYarn.js.map +1 -1
- package/services/SetupYarn/binaries/yarn-4.10.2.cjs +0 -942
|
@@ -6,6 +6,10 @@ export const Extensions = () => {
|
|
|
6
6
|
return (
|
|
7
7
|
<>
|
|
8
8
|
<Infra.Aws.DefaultRegion name={"{REGION}"} />
|
|
9
|
+
{/* Encryption MUST always be configured for production environments. */}
|
|
10
|
+
<Infra.Env.IsProd>
|
|
11
|
+
<Infra.Encryption passphrase={process.env.WEBINY_ENCRYPTION_PASSPHRASE || ""} />
|
|
12
|
+
</Infra.Env.IsProd>
|
|
9
13
|
<Cognito />
|
|
10
14
|
</>
|
|
11
15
|
);
|
|
@@ -7,6 +7,10 @@ export const Extensions = () => {
|
|
|
7
7
|
<>
|
|
8
8
|
<Infra.Aws.DefaultRegion name={"{REGION}"} />
|
|
9
9
|
<Infra.OpenSearch enabled={true} />
|
|
10
|
+
{/* Encryption MUST always be configured for production environments. */}
|
|
11
|
+
<Infra.Env.IsProd>
|
|
12
|
+
<Infra.Encryption passphrase={process.env.WEBINY_ENCRYPTION_PASSPHRASE || ""} />
|
|
13
|
+
</Infra.Env.IsProd>
|
|
10
14
|
<Cognito />
|
|
11
15
|
</>
|
|
12
16
|
);
|
package/package.json
CHANGED
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-webiny-project",
|
|
3
|
-
"version": "6.3.0-beta.
|
|
3
|
+
"version": "6.3.0-beta.3",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Webiny project bootstrap tool.",
|
|
6
|
-
"
|
|
6
|
+
"exports": {
|
|
7
|
+
"./*": "./*"
|
|
8
|
+
},
|
|
7
9
|
"bin": "./bin.js",
|
|
8
10
|
"keywords": [
|
|
9
11
|
"Webiny"
|
|
@@ -11,23 +13,23 @@
|
|
|
11
13
|
"author": "Webiny Ltd.",
|
|
12
14
|
"license": "MIT",
|
|
13
15
|
"dependencies": {
|
|
14
|
-
"@webiny/build-tools": "6.3.0-beta.
|
|
15
|
-
"@webiny/mcp": "6.3.0-beta.
|
|
16
|
-
"@webiny/system-requirements": "6.3.0-beta.
|
|
17
|
-
"@webiny/telemetry": "6.3.0-beta.
|
|
16
|
+
"@webiny/build-tools": "6.3.0-beta.3",
|
|
17
|
+
"@webiny/mcp": "6.3.0-beta.3",
|
|
18
|
+
"@webiny/system-requirements": "6.3.0-beta.3",
|
|
19
|
+
"@webiny/telemetry": "6.3.0-beta.3",
|
|
18
20
|
"chalk": "5.6.2",
|
|
19
21
|
"execa": "5.1.1",
|
|
20
22
|
"find-up": "8.0.0",
|
|
21
23
|
"fs-extra": "11.3.4",
|
|
22
|
-
"inquirer": "13.4.
|
|
24
|
+
"inquirer": "13.4.2",
|
|
23
25
|
"js-yaml": "4.1.1",
|
|
24
26
|
"listr2": "10.2.1",
|
|
25
27
|
"load-json-file": "7.0.1",
|
|
26
|
-
"ora": "9.
|
|
28
|
+
"ora": "9.4.0",
|
|
27
29
|
"os": "0.1.2",
|
|
28
30
|
"rimraf": "6.1.3",
|
|
29
31
|
"type-fest": "5.6.0",
|
|
30
|
-
"uuid": "
|
|
32
|
+
"uuid": "14.0.0",
|
|
31
33
|
"validate-npm-package-name": "7.0.2",
|
|
32
34
|
"write-json-file": "7.0.0",
|
|
33
35
|
"yargs": "18.0.0",
|
|
@@ -41,7 +43,7 @@
|
|
|
41
43
|
"access": "public",
|
|
42
44
|
"directory": "dist"
|
|
43
45
|
},
|
|
44
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "e154ec3326903876c357d35422dc60d29e061419",
|
|
45
47
|
"adio": {
|
|
46
48
|
"ignoreDirs": [
|
|
47
49
|
"_templates"
|