@aws/create-nx-workspace 1.0.0-rc.53 → 1.0.0-rc.55
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/bin/index.cjs +17 -6
- package/package.json +1 -1
package/bin/index.cjs
CHANGED
|
@@ -2,13 +2,11 @@
|
|
|
2
2
|
let child_process = require("child_process");
|
|
3
3
|
let fs = require("fs");
|
|
4
4
|
let path = require("path");
|
|
5
|
-
//#
|
|
6
|
-
//#region src/create-nx-workspace.ts
|
|
5
|
+
//#region ../nx-plugin/src/utils/versions.ts
|
|
7
6
|
/**
|
|
8
|
-
*
|
|
9
|
-
* SPDX-License-Identifier: Apache-2.0
|
|
7
|
+
* Versons for TypeScript dependencies added by generators
|
|
10
8
|
*/
|
|
11
|
-
const
|
|
9
|
+
const TS_VERSIONS = {
|
|
12
10
|
"@a2a-js/sdk": "0.3.14",
|
|
13
11
|
"@aws/aws-distro-opentelemetry-node-autoinstrumentation": "0.12.0",
|
|
14
12
|
"@opentelemetry/propagator-jaeger": "2.9.0",
|
|
@@ -35,8 +33,13 @@ const NX_VERSION = {
|
|
|
35
33
|
"@middy/core": "7.7.0",
|
|
36
34
|
"@nxlv/python": "22.2.2",
|
|
37
35
|
"@nx-extend/terraform": "10.3.0",
|
|
36
|
+
nx: "23.1.0",
|
|
38
37
|
"@nx/devkit": "23.1.0",
|
|
38
|
+
"@nx/js": "23.1.0",
|
|
39
39
|
"@nx/react": "23.1.0",
|
|
40
|
+
"@nx/vite": "23.1.0",
|
|
41
|
+
"@nx/vitest": "23.1.0",
|
|
42
|
+
"@nx/workspace": "23.1.0",
|
|
40
43
|
"create-nx-workspace": "23.1.0",
|
|
41
44
|
"@swc-node/register": "1.12.1",
|
|
42
45
|
"@swc/core": "1.15.43",
|
|
@@ -134,7 +137,15 @@ const NX_VERSION = {
|
|
|
134
137
|
vitest: "4.1.10",
|
|
135
138
|
zod: "4.4.3",
|
|
136
139
|
ws: "8.21.1"
|
|
137
|
-
}
|
|
140
|
+
};
|
|
141
|
+
TS_VERSIONS.nx;
|
|
142
|
+
//#endregion
|
|
143
|
+
//#region src/create-nx-workspace.ts
|
|
144
|
+
/**
|
|
145
|
+
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
146
|
+
* SPDX-License-Identifier: Apache-2.0
|
|
147
|
+
*/
|
|
148
|
+
const NX_VERSION = TS_VERSIONS["create-nx-workspace"];
|
|
138
149
|
const PRESET = `@aws/nx-plugin@${JSON.parse((0, fs.readFileSync)((0, path.resolve)(__dirname, "..", "package.json"), "utf-8")).version}`;
|
|
139
150
|
const DEFAULT_FLAGS = [
|
|
140
151
|
"--ci=skip",
|