@aws/nx-plugin-mcp 1.0.0-rc.64 → 1.0.0-rc.65

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.
@@ -109,7 +109,7 @@ export default defineConfig([
109
109
  output: {
110
110
  file: '../../dist/packages/my-project/bundle/index.js',
111
111
  format: 'cjs',
112
- inlineDynamicImports: true,
112
+ codeSplitting: false,
113
113
  },
114
114
  platform: 'node',
115
115
  },
@@ -497,7 +497,7 @@ Unit tests for generators are straightforward to implement. Here's a typical pat
497
497
 
498
498
  ```typescript
499
499
  import { createTreeWithEmptyWorkspace } from '@nx/devkit/testing';
500
- import { yourGenerator } from './generator';
500
+ import { yourGenerator } from './generator.js';
501
501
 
502
502
  describe('your generator', () => {
503
503
  let tree;
@@ -97,7 +97,7 @@ The scaffolded `migration.spec.ts` uses `createTreeUsingTsSolutionSetup()` to bu
97
97
  ```ts
98
98
  import type { Tree } from '@nx/devkit';
99
99
  import { createTreeUsingTsSolutionSetup } from '@aws/nx-plugin/sdk/utils/test';
100
- import migration from './migration';
100
+ import migration from './migration.js';
101
101
 
102
102
  describe('my migration', () => {
103
103
  let tree: Tree;
@@ -292,7 +292,7 @@ export default defineConfig([
292
292
  output: {
293
293
  file: '../../dist/packages/my-library/bundle/index.js',
294
294
  format: 'cjs',
295
- inlineDynamicImports: true,
295
+ codeSplitting: false,
296
296
  },
297
297
  },
298
298
  ]);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws/nx-plugin-mcp",
3
- "version": "1.0.0-rc.64",
3
+ "version": "1.0.0-rc.65",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/awslabs/nx-plugin-for-aws.git",