@aws/create-nx-workspace 1.0.0-rc.22 → 1.0.0-rc.24
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 +10 -4
- package/package.json +1 -1
package/bin/index.cjs
CHANGED
|
@@ -30,9 +30,11 @@ const NX_VERSION = {
|
|
|
30
30
|
"@middy/core": "7.6.7",
|
|
31
31
|
"@nxlv/python": "22.2.0",
|
|
32
32
|
"@nx-extend/terraform": "10.2.1",
|
|
33
|
-
"@nx/devkit": "
|
|
34
|
-
"@nx/react": "
|
|
35
|
-
"create-nx-workspace": "
|
|
33
|
+
"@nx/devkit": "23.0.1",
|
|
34
|
+
"@nx/react": "23.0.1",
|
|
35
|
+
"create-nx-workspace": "23.0.1",
|
|
36
|
+
"@swc-node/register": "1.11.1",
|
|
37
|
+
"@swc/core": "1.15.41",
|
|
36
38
|
"@modelcontextprotocol/sdk": "1.29.0",
|
|
37
39
|
"@modelcontextprotocol/inspector": "0.19.0",
|
|
38
40
|
"@ag-ui/aws-strands": "0.1.0",
|
|
@@ -127,7 +129,11 @@ const NX_VERSION = {
|
|
|
127
129
|
ws: "8.21.0"
|
|
128
130
|
}["create-nx-workspace"];
|
|
129
131
|
const PRESET = `@aws/nx-plugin@${JSON.parse((0, fs.readFileSync)((0, path.resolve)(__dirname, "..", "package.json"), "utf-8")).version}`;
|
|
130
|
-
const DEFAULT_FLAGS = [
|
|
132
|
+
const DEFAULT_FLAGS = [
|
|
133
|
+
"--ci=skip",
|
|
134
|
+
"--analytics=false",
|
|
135
|
+
"--trustThirdPartyPreset"
|
|
136
|
+
];
|
|
131
137
|
/**
|
|
132
138
|
* Detect the package manager from the npm_config_user_agent environment variable.
|
|
133
139
|
* This is set by package managers when running scripts/bins.
|