@aws/nx-plugin-mcp 1.0.0-rc.66 → 1.0.0-rc.68
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 +2 -2
- package/docs/guides/astro-docs.mdx +8 -0
- package/package.json +1 -1
package/bin/aws-nx-mcp.js
CHANGED
|
@@ -20812,8 +20812,8 @@ const NX_VERSION = {
|
|
|
20812
20812
|
"@aws-sdk/credential-provider-cognito-identity": "3.972.66",
|
|
20813
20813
|
"@aws-sdk/client-secrets-manager": "3.1106.0",
|
|
20814
20814
|
"@aws-sdk/rds-signer": "3.1106.0",
|
|
20815
|
-
"@
|
|
20816
|
-
"@
|
|
20815
|
+
"@smithy/server-apigateway": "0.2.0",
|
|
20816
|
+
"@smithy/server-node": "0.2.0",
|
|
20817
20817
|
"@aws-lambda-powertools/logger": "2.34.0",
|
|
20818
20818
|
"@aws-lambda-powertools/metrics": "2.34.0",
|
|
20819
20819
|
"@aws-lambda-powertools/parameters": "2.34.0",
|
|
@@ -86,6 +86,14 @@ When run without `--all`, the script only translates files that have changed
|
|
|
86
86
|
since the last translation commit on the current branch — meaning you can
|
|
87
87
|
safely re-run it on every docs PR without re-translating the whole site.
|
|
88
88
|
|
|
89
|
+
Translations whose source file no longer exists are deleted, so renaming or
|
|
90
|
+
removing a page does not leave stale copies behind in each locale.
|
|
91
|
+
|
|
92
|
+
Each translation is written as a whole file. The agent is given the source, the
|
|
93
|
+
existing translation, and a diff of what changed, and reuses the existing
|
|
94
|
+
wording for sections the diff left alone — so only prose the diff touched is
|
|
95
|
+
retranslated, and code blocks are copied from the source as-is.
|
|
96
|
+
|
|
89
97
|
### Configuring translation
|
|
90
98
|
|
|
91
99
|
Edit `scripts/translate.config.json` to change:
|