@aws/nx-plugin-mcp 0.108.0 → 0.109.1

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.
Files changed (2) hide show
  1. package/bin/aws-nx-mcp.js +13 -10
  2. package/package.json +1 -1
package/bin/aws-nx-mcp.js CHANGED
@@ -20515,8 +20515,8 @@ const renderGeneratorCommand = (generatorId, schema, packageManager) => {
20515
20515
  return `\`\`\`bash\n${buildNxCommand(`g @aws/nx-plugin:${generatorId} --no-interactive ${Object.keys(schema.properties ?? {}).filter((k) => required.has(k)).map((k) => `--${k}=<${k}>`).join(" ")}`, packageManager)}\n\`\`\``;
20516
20516
  };
20517
20517
  //#endregion
20518
- //#region ../../node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs
20519
- /*! js-yaml 4.1.0 https://github.com/nodeca/js-yaml @license MIT */
20518
+ //#region ../../node_modules/.pnpm/js-yaml@4.1.1/node_modules/js-yaml/dist/js-yaml.mjs
20519
+ /*! js-yaml 4.1.1 https://github.com/nodeca/js-yaml @license MIT */
20520
20520
  function isNothing(subject) {
20521
20521
  return typeof subject === "undefined" || subject === null;
20522
20522
  }
@@ -21251,6 +21251,15 @@ function charFromCodepoint(c) {
21251
21251
  if (c <= 65535) return String.fromCharCode(c);
21252
21252
  return String.fromCharCode((c - 65536 >> 10) + 55296, (c - 65536 & 1023) + 56320);
21253
21253
  }
21254
+ function setProperty(object, key, value) {
21255
+ if (key === "__proto__") Object.defineProperty(object, key, {
21256
+ configurable: true,
21257
+ enumerable: true,
21258
+ writable: true,
21259
+ value
21260
+ });
21261
+ else object[key] = value;
21262
+ }
21254
21263
  var simpleEscapeCheck = new Array(256);
21255
21264
  var simpleEscapeMap = new Array(256);
21256
21265
  for (var i$1 = 0; i$1 < 256; i$1++) {
@@ -21341,7 +21350,7 @@ function mergeMappings(state, destination, source, overridableKeys) {
21341
21350
  for (index = 0, quantity = sourceKeys.length; index < quantity; index += 1) {
21342
21351
  key = sourceKeys[index];
21343
21352
  if (!_hasOwnProperty$1.call(destination, key)) {
21344
- destination[key] = source[key];
21353
+ setProperty(destination, key, source[key]);
21345
21354
  overridableKeys[key] = true;
21346
21355
  }
21347
21356
  }
@@ -21367,13 +21376,7 @@ function storeMappingPair(state, _result, overridableKeys, keyTag, keyNode, valu
21367
21376
  state.position = startPos || state.position;
21368
21377
  throwError(state, "duplicated mapping key");
21369
21378
  }
21370
- if (keyNode === "__proto__") Object.defineProperty(_result, keyNode, {
21371
- configurable: true,
21372
- enumerable: true,
21373
- writable: true,
21374
- value: valueNode
21375
- });
21376
- else _result[keyNode] = valueNode;
21379
+ setProperty(_result, keyNode, valueNode);
21377
21380
  delete overridableKeys[keyNode];
21378
21381
  }
21379
21382
  return _result;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws/nx-plugin-mcp",
3
- "version": "0.108.0",
3
+ "version": "0.109.1",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/awslabs/nx-plugin-for-aws.git",