@aws/nx-plugin-mcp 1.0.0-rc.54 → 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/aws-nx-mcp.js +14 -10
- package/package.json +1 -1
package/bin/aws-nx-mcp.js
CHANGED
|
@@ -20779,16 +20779,9 @@ var import_lodash_deburr = /* @__PURE__ */ __toESM(require_lodash_deburr(), 1);
|
|
|
20779
20779
|
const kebabCase = (str) => {
|
|
20780
20780
|
return (0, import_lodash_deburr.default)(str).replace(/[^a-zA-Z0-9]+/g, "-").replace(/([a-z0-9])([A-Z])/g, "$1-$2").toLowerCase().replace(/^-+|-+$/g, "");
|
|
20781
20781
|
};
|
|
20782
|
-
//#endregion
|
|
20783
|
-
//#region ../nx-plugin/src/utils/commands.ts
|
|
20784
|
-
/**
|
|
20785
|
-
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
20786
|
-
* SPDX-License-Identifier: Apache-2.0
|
|
20787
|
-
*/
|
|
20788
20782
|
/**
|
|
20789
|
-
* The nx version the plugin is built against
|
|
20790
|
-
*
|
|
20791
|
-
* plugin's `@nx/*` packages — a mismatch deadlocks `nx sync`.
|
|
20783
|
+
* The nx version the plugin is built against, and the single source of truth
|
|
20784
|
+
* for every place a workspace's nx is pinned.
|
|
20792
20785
|
*/
|
|
20793
20786
|
const NX_VERSION = {
|
|
20794
20787
|
"@a2a-js/sdk": "0.3.14",
|
|
@@ -20817,8 +20810,13 @@ const NX_VERSION = {
|
|
|
20817
20810
|
"@middy/core": "7.7.0",
|
|
20818
20811
|
"@nxlv/python": "22.2.2",
|
|
20819
20812
|
"@nx-extend/terraform": "10.3.0",
|
|
20813
|
+
nx: "23.1.0",
|
|
20820
20814
|
"@nx/devkit": "23.1.0",
|
|
20815
|
+
"@nx/js": "23.1.0",
|
|
20821
20816
|
"@nx/react": "23.1.0",
|
|
20817
|
+
"@nx/vite": "23.1.0",
|
|
20818
|
+
"@nx/vitest": "23.1.0",
|
|
20819
|
+
"@nx/workspace": "23.1.0",
|
|
20822
20820
|
"create-nx-workspace": "23.1.0",
|
|
20823
20821
|
"@swc-node/register": "1.12.1",
|
|
20824
20822
|
"@swc/core": "1.15.43",
|
|
@@ -20916,7 +20914,13 @@ const NX_VERSION = {
|
|
|
20916
20914
|
vitest: "4.1.10",
|
|
20917
20915
|
zod: "4.4.3",
|
|
20918
20916
|
ws: "8.21.1"
|
|
20919
|
-
}
|
|
20917
|
+
}.nx;
|
|
20918
|
+
//#endregion
|
|
20919
|
+
//#region ../nx-plugin/src/utils/commands.ts
|
|
20920
|
+
/**
|
|
20921
|
+
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
20922
|
+
* SPDX-License-Identifier: Apache-2.0
|
|
20923
|
+
*/
|
|
20920
20924
|
const PACKAGE_MANAGER_COMMANDS = {
|
|
20921
20925
|
npm: {
|
|
20922
20926
|
exec: "npx",
|