@aws/nx-plugin 0.75.0 → 0.77.0
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/LICENSE-THIRD-PARTY +60 -2
- package/README.md +5 -0
- package/package.json +9 -9
- package/src/infra/app/__snapshots__/generator.spec.ts.snap +378 -7
- package/src/infra/app/files/app/src/main.ts.template +17 -2
- package/src/infra/app/generator.js +34 -9
- package/src/infra/app/generator.js.map +1 -1
- package/src/infra/app/schema.d.ts +1 -0
- package/src/infra/app/schema.json +6 -0
- package/src/py/mcp-server/__snapshots__/generator.spec.ts.snap +21 -4
- package/src/py/mcp-server/files/app/http.py.template +18 -2
- package/src/py/mcp-server/files/deploy/Dockerfile.template +1 -1
- package/src/py/mcp-server/generator.js +4 -2
- package/src/py/mcp-server/generator.js.map +1 -1
- package/src/py/strands-agent/__snapshots__/generator.spec.ts.snap +6 -6
- package/src/ts/mcp-server/__snapshots__/generator.spec.ts.snap +1 -1
- package/src/ts/nx-plugin/__snapshots__/generator.spec.ts.snap +1 -1
- package/src/ts/react-website/app/__snapshots__/generator.spec.ts.snap +13 -13
- package/src/utils/files/common/infra-config/src/index.ts.template +3 -0
- package/src/utils/files/common/infra-config/src/resolve-stage.ts.template +23 -0
- package/src/utils/files/common/infra-config/src/stages.config.ts.template +48 -0
- package/src/utils/files/common/infra-config/src/stages.types.ts.template +66 -0
- package/src/utils/files/common/scripts/src/index.ts.template +1 -0
- package/src/utils/files/common/scripts/src/infra-deploy.ts.template +2 -0
- package/src/utils/files/common/scripts/src/infra-destroy.ts.template +2 -0
- package/src/utils/files/common/scripts/src/stage-credentials/cdk-command.ts.template +18 -0
- package/src/utils/files/common/scripts/src/stage-credentials/credentials.ts.template +100 -0
- package/src/utils/files/common/scripts/src/stage-credentials/run.ts.template +52 -0
- package/src/utils/files/common/scripts/src/stage-credentials/stage-parser.ts.template +15 -0
- package/src/utils/shared-constructs-constants.d.ts +4 -0
- package/src/utils/shared-constructs-constants.js +5 -1
- package/src/utils/shared-constructs-constants.js.map +1 -1
- package/src/utils/shared-infra-config.d.ts +11 -0
- package/src/utils/shared-infra-config.js +47 -0
- package/src/utils/shared-infra-config.js.map +1 -0
- package/src/utils/shared-scripts.d.ts +12 -0
- package/src/utils/shared-scripts.js +49 -0
- package/src/utils/shared-scripts.js.map +1 -0
- package/src/utils/versions.d.ts +29 -28
- package/src/utils/versions.js +28 -27
- package/src/utils/versions.js.map +1 -1
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import { spawnSync } from 'child_process';
|
|
2
|
+
import stagesConfig from '<%= scopeAlias %>common-infra-config';
|
|
3
|
+
import { parseStageName } from './stage-parser.js';
|
|
4
|
+
import {
|
|
5
|
+
lookupCredentials,
|
|
6
|
+
buildChildEnv,
|
|
7
|
+
describeCredentials,
|
|
8
|
+
} from './credentials.js';
|
|
9
|
+
import { buildCdkCommand } from './cdk-command.js';
|
|
10
|
+
|
|
11
|
+
const log = (msg: string) => console.error(`[infra-deploy] ${msg}`);
|
|
12
|
+
|
|
13
|
+
export async function run(action: 'deploy' | 'destroy'): Promise<void> {
|
|
14
|
+
const [projectPath, ...remainingArgs] = process.argv.slice(2);
|
|
15
|
+
|
|
16
|
+
if (!projectPath) {
|
|
17
|
+
log(`Usage: infra-${action} <project-path> [stage/*] [cdk-args...]`);
|
|
18
|
+
process.exit(1);
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
const stageName = parseStageName(remainingArgs[0]);
|
|
22
|
+
let childEnv: Record<string, string | undefined> = { ...process.env };
|
|
23
|
+
|
|
24
|
+
if (stageName) {
|
|
25
|
+
const { credentials, source } = lookupCredentials(
|
|
26
|
+
stagesConfig,
|
|
27
|
+
projectPath,
|
|
28
|
+
stageName,
|
|
29
|
+
);
|
|
30
|
+
|
|
31
|
+
if (credentials) {
|
|
32
|
+
log(
|
|
33
|
+
`Using ${describeCredentials(credentials)} for '${stageName}' (${source})`,
|
|
34
|
+
);
|
|
35
|
+
childEnv = await buildChildEnv(credentials, projectPath);
|
|
36
|
+
} else {
|
|
37
|
+
log(`No credentials for '${stageName}' — using environment`);
|
|
38
|
+
}
|
|
39
|
+
} else {
|
|
40
|
+
log('No stage specified — using environment credentials');
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
// Run CDK from the project directory so it finds cdk.json
|
|
44
|
+
const cmd = buildCdkCommand(action, remainingArgs);
|
|
45
|
+
const { status } = spawnSync(cmd[0], cmd.slice(1), {
|
|
46
|
+
stdio: 'inherit',
|
|
47
|
+
env: childEnv,
|
|
48
|
+
cwd: projectPath,
|
|
49
|
+
});
|
|
50
|
+
|
|
51
|
+
process.exit(status ?? 1);
|
|
52
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Extracts the CDK stage name from the first positional argument.
|
|
3
|
+
*
|
|
4
|
+
* Examples:
|
|
5
|
+
* parseStageName('my-app-dev/*') → 'my-app-dev'
|
|
6
|
+
* parseStageName('my-app-dev') → 'my-app-dev'
|
|
7
|
+
* parseStageName('--verbose') → undefined (flag, not a stage)
|
|
8
|
+
* parseStageName(undefined) → undefined
|
|
9
|
+
*/
|
|
10
|
+
export function parseStageName(
|
|
11
|
+
firstArg: string | undefined,
|
|
12
|
+
): string | undefined {
|
|
13
|
+
if (!firstArg || firstArg.startsWith('-')) return undefined;
|
|
14
|
+
return firstArg.includes('/') ? firstArg.split('/')[0] : firstArg;
|
|
15
|
+
}
|
|
@@ -9,3 +9,7 @@ export declare const SHARED_TERRAFORM_NAME = "terraform";
|
|
|
9
9
|
export declare const SHARED_TERRAFORM_DIR = "common/terraform";
|
|
10
10
|
export declare const SHARED_SHADCN_NAME = "common-shadcn";
|
|
11
11
|
export declare const SHARED_SHADCN_DIR = "common/shadcn";
|
|
12
|
+
export declare const SHARED_INFRA_CONFIG_NAME = "common-infra-config";
|
|
13
|
+
export declare const SHARED_INFRA_CONFIG_DIR = "common/infra-config";
|
|
14
|
+
export declare const SHARED_SCRIPTS_NAME = "common-scripts";
|
|
15
|
+
export declare const SHARED_SCRIPTS_DIR = "common/scripts";
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* SPDX-License-Identifier: Apache-2.0
|
|
5
5
|
*/
|
|
6
6
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
|
-
exports.SHARED_SHADCN_DIR = exports.SHARED_SHADCN_NAME = exports.SHARED_TERRAFORM_DIR = exports.SHARED_TERRAFORM_NAME = exports.SHARED_CONSTRUCTS_DIR = exports.SHARED_CONSTRUCTS_NAME = exports.PACKAGES_DIR = void 0;
|
|
7
|
+
exports.SHARED_SCRIPTS_DIR = exports.SHARED_SCRIPTS_NAME = exports.SHARED_INFRA_CONFIG_DIR = exports.SHARED_INFRA_CONFIG_NAME = exports.SHARED_SHADCN_DIR = exports.SHARED_SHADCN_NAME = exports.SHARED_TERRAFORM_DIR = exports.SHARED_TERRAFORM_NAME = exports.SHARED_CONSTRUCTS_DIR = exports.SHARED_CONSTRUCTS_NAME = exports.PACKAGES_DIR = void 0;
|
|
8
8
|
exports.PACKAGES_DIR = 'packages';
|
|
9
9
|
exports.SHARED_CONSTRUCTS_NAME = 'common-constructs';
|
|
10
10
|
exports.SHARED_CONSTRUCTS_DIR = 'common/constructs';
|
|
@@ -12,4 +12,8 @@ exports.SHARED_TERRAFORM_NAME = 'terraform';
|
|
|
12
12
|
exports.SHARED_TERRAFORM_DIR = 'common/terraform';
|
|
13
13
|
exports.SHARED_SHADCN_NAME = 'common-shadcn';
|
|
14
14
|
exports.SHARED_SHADCN_DIR = 'common/shadcn';
|
|
15
|
+
exports.SHARED_INFRA_CONFIG_NAME = 'common-infra-config';
|
|
16
|
+
exports.SHARED_INFRA_CONFIG_DIR = 'common/infra-config';
|
|
17
|
+
exports.SHARED_SCRIPTS_NAME = 'common-scripts';
|
|
18
|
+
exports.SHARED_SCRIPTS_DIR = 'common/scripts';
|
|
15
19
|
//# sourceMappingURL=shared-constructs-constants.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"shared-constructs-constants.js","sourceRoot":"","sources":["../../../../../packages/nx-plugin/src/utils/shared-constructs-constants.ts"],"names":[],"mappings":";AAAA;;;GAGG;;;AAEU,QAAA,YAAY,GAAG,UAAU,CAAC;AAC1B,QAAA,sBAAsB,GAAG,mBAAmB,CAAC;AAC7C,QAAA,qBAAqB,GAAG,mBAAmB,CAAC;AAC5C,QAAA,qBAAqB,GAAG,WAAW,CAAC;AACpC,QAAA,oBAAoB,GAAG,kBAAkB,CAAC;AAC1C,QAAA,kBAAkB,GAAG,eAAe,CAAC;AACrC,QAAA,iBAAiB,GAAG,eAAe,CAAC"}
|
|
1
|
+
{"version":3,"file":"shared-constructs-constants.js","sourceRoot":"","sources":["../../../../../packages/nx-plugin/src/utils/shared-constructs-constants.ts"],"names":[],"mappings":";AAAA;;;GAGG;;;AAEU,QAAA,YAAY,GAAG,UAAU,CAAC;AAC1B,QAAA,sBAAsB,GAAG,mBAAmB,CAAC;AAC7C,QAAA,qBAAqB,GAAG,mBAAmB,CAAC;AAC5C,QAAA,qBAAqB,GAAG,WAAW,CAAC;AACpC,QAAA,oBAAoB,GAAG,kBAAkB,CAAC;AAC1C,QAAA,kBAAkB,GAAG,eAAe,CAAC;AACrC,QAAA,iBAAiB,GAAG,eAAe,CAAC;AACpC,QAAA,wBAAwB,GAAG,qBAAqB,CAAC;AACjD,QAAA,uBAAuB,GAAG,qBAAqB,CAAC;AAChD,QAAA,mBAAmB,GAAG,gBAAgB,CAAC;AACvC,QAAA,kBAAkB,GAAG,gBAAgB,CAAC"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
3
|
+
* SPDX-License-Identifier: Apache-2.0
|
|
4
|
+
*/
|
|
5
|
+
import { Tree } from '@nx/devkit';
|
|
6
|
+
/**
|
|
7
|
+
* Lazily creates the shared infra-config package at packages/common/infra-config/.
|
|
8
|
+
* Contains stage configuration types and the user's stage-to-credential mappings.
|
|
9
|
+
* Importable from any package via ts project references.
|
|
10
|
+
*/
|
|
11
|
+
export declare function sharedInfraConfigGenerator(tree: Tree): Promise<void>;
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.sharedInfraConfigGenerator = sharedInfraConfigGenerator;
|
|
4
|
+
const tslib_1 = require("tslib");
|
|
5
|
+
/**
|
|
6
|
+
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
7
|
+
* SPDX-License-Identifier: Apache-2.0
|
|
8
|
+
*/
|
|
9
|
+
const devkit_1 = require("@nx/devkit");
|
|
10
|
+
const npm_scope_1 = require("./npm-scope");
|
|
11
|
+
const generator_1 = tslib_1.__importDefault(require("../ts/lib/generator"));
|
|
12
|
+
const format_1 = require("./format");
|
|
13
|
+
const shared_constructs_constants_1 = require("./shared-constructs-constants");
|
|
14
|
+
/**
|
|
15
|
+
* Lazily creates the shared infra-config package at packages/common/infra-config/.
|
|
16
|
+
* Contains stage configuration types and the user's stage-to-credential mappings.
|
|
17
|
+
* Importable from any package via ts project references.
|
|
18
|
+
*/
|
|
19
|
+
function sharedInfraConfigGenerator(tree) {
|
|
20
|
+
return tslib_1.__awaiter(this, void 0, void 0, function* () {
|
|
21
|
+
const configDir = (0, devkit_1.joinPathFragments)(shared_constructs_constants_1.PACKAGES_DIR, shared_constructs_constants_1.SHARED_INFRA_CONFIG_DIR);
|
|
22
|
+
// Don't recreate if it already exists
|
|
23
|
+
if (tree.exists((0, devkit_1.joinPathFragments)(configDir, 'project.json'))) {
|
|
24
|
+
return;
|
|
25
|
+
}
|
|
26
|
+
const npmScopePrefix = (0, npm_scope_1.getNpmScopePrefix)(tree);
|
|
27
|
+
const pkgMgrCmd = (0, devkit_1.getPackageManagerCommand)();
|
|
28
|
+
yield (0, generator_1.default)(tree, {
|
|
29
|
+
name: shared_constructs_constants_1.SHARED_INFRA_CONFIG_NAME,
|
|
30
|
+
directory: shared_constructs_constants_1.PACKAGES_DIR,
|
|
31
|
+
subDirectory: shared_constructs_constants_1.SHARED_INFRA_CONFIG_DIR,
|
|
32
|
+
});
|
|
33
|
+
// Replace default src/ with our templates
|
|
34
|
+
tree.delete((0, devkit_1.joinPathFragments)(configDir, 'src'));
|
|
35
|
+
(0, devkit_1.generateFiles)(tree, (0, devkit_1.joinPathFragments)(__dirname, 'files', shared_constructs_constants_1.SHARED_INFRA_CONFIG_DIR, 'src'), (0, devkit_1.joinPathFragments)(configDir, 'src'), {
|
|
36
|
+
pkgMgrRunNx: `${pkgMgrCmd.exec} nx`,
|
|
37
|
+
}, { overwriteStrategy: devkit_1.OverwriteStrategy.KeepExisting });
|
|
38
|
+
// Generate README
|
|
39
|
+
(0, devkit_1.generateFiles)(tree, (0, devkit_1.joinPathFragments)(__dirname, 'files', 'common', 'readme'), configDir, {
|
|
40
|
+
fullyQualifiedName: `${npmScopePrefix}${shared_constructs_constants_1.SHARED_INFRA_CONFIG_NAME}`,
|
|
41
|
+
name: shared_constructs_constants_1.SHARED_INFRA_CONFIG_NAME,
|
|
42
|
+
pkgMgrCmd: pkgMgrCmd.exec,
|
|
43
|
+
}, { overwriteStrategy: devkit_1.OverwriteStrategy.Overwrite });
|
|
44
|
+
yield (0, format_1.formatFilesInSubtree)(tree);
|
|
45
|
+
});
|
|
46
|
+
}
|
|
47
|
+
//# sourceMappingURL=shared-infra-config.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"shared-infra-config.js","sourceRoot":"","sources":["../../../../../packages/nx-plugin/src/utils/shared-infra-config.ts"],"names":[],"mappings":";;AAyBA,gEA2CC;;AApED;;;GAGG;AACH,uCAMoB;AACpB,2CAAgD;AAChD,4EAAqD;AACrD,qCAAgD;AAChD,+EAIuC;AAEvC;;;;GAIG;AACH,SAAsB,0BAA0B,CAAC,IAAU;;QACzD,MAAM,SAAS,GAAG,IAAA,0BAAiB,EAAC,0CAAY,EAAE,qDAAuB,CAAC,CAAC;QAE3E,sCAAsC;QACtC,IAAI,IAAI,CAAC,MAAM,CAAC,IAAA,0BAAiB,EAAC,SAAS,EAAE,cAAc,CAAC,CAAC,EAAE,CAAC;YAC9D,OAAO;QACT,CAAC;QAED,MAAM,cAAc,GAAG,IAAA,6BAAiB,EAAC,IAAI,CAAC,CAAC;QAC/C,MAAM,SAAS,GAAG,IAAA,iCAAwB,GAAE,CAAC;QAE7C,MAAM,IAAA,mBAAkB,EAAC,IAAI,EAAE;YAC7B,IAAI,EAAE,sDAAwB;YAC9B,SAAS,EAAE,0CAAY;YACvB,YAAY,EAAE,qDAAuB;SACtC,CAAC,CAAC;QAEH,0CAA0C;QAC1C,IAAI,CAAC,MAAM,CAAC,IAAA,0BAAiB,EAAC,SAAS,EAAE,KAAK,CAAC,CAAC,CAAC;QACjD,IAAA,sBAAa,EACX,IAAI,EACJ,IAAA,0BAAiB,EAAC,SAAS,EAAE,OAAO,EAAE,qDAAuB,EAAE,KAAK,CAAC,EACrE,IAAA,0BAAiB,EAAC,SAAS,EAAE,KAAK,CAAC,EACnC;YACE,WAAW,EAAE,GAAG,SAAS,CAAC,IAAI,KAAK;SACpC,EACD,EAAE,iBAAiB,EAAE,0BAAiB,CAAC,YAAY,EAAE,CACtD,CAAC;QAEF,kBAAkB;QAClB,IAAA,sBAAa,EACX,IAAI,EACJ,IAAA,0BAAiB,EAAC,SAAS,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,CAAC,EACzD,SAAS,EACT;YACE,kBAAkB,EAAE,GAAG,cAAc,GAAG,sDAAwB,EAAE;YAClE,IAAI,EAAE,sDAAwB;YAC9B,SAAS,EAAE,SAAS,CAAC,IAAI;SAC1B,EACD,EAAE,iBAAiB,EAAE,0BAAiB,CAAC,SAAS,EAAE,CACnD,CAAC;QAEF,MAAM,IAAA,6BAAoB,EAAC,IAAI,CAAC,CAAC;IACnC,CAAC;CAAA"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
3
|
+
* SPDX-License-Identifier: Apache-2.0
|
|
4
|
+
*/
|
|
5
|
+
import { Tree } from '@nx/devkit';
|
|
6
|
+
/**
|
|
7
|
+
* Lazily creates the shared scripts package at packages/common/scripts/.
|
|
8
|
+
* Contains infra-deploy and infra-destroy scripts that resolve
|
|
9
|
+
* credentials from infra-config and call CDK.
|
|
10
|
+
* Invoked via `tsx packages/common/scripts/src/infra-deploy.ts` from NX targets.
|
|
11
|
+
*/
|
|
12
|
+
export declare function sharedScriptsGenerator(tree: Tree): Promise<void>;
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.sharedScriptsGenerator = sharedScriptsGenerator;
|
|
4
|
+
const tslib_1 = require("tslib");
|
|
5
|
+
/**
|
|
6
|
+
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
7
|
+
* SPDX-License-Identifier: Apache-2.0
|
|
8
|
+
*/
|
|
9
|
+
const devkit_1 = require("@nx/devkit");
|
|
10
|
+
const npm_scope_1 = require("./npm-scope");
|
|
11
|
+
const generator_1 = tslib_1.__importDefault(require("../ts/lib/generator"));
|
|
12
|
+
const versions_1 = require("./versions");
|
|
13
|
+
const format_1 = require("./format");
|
|
14
|
+
const shared_constructs_constants_1 = require("./shared-constructs-constants");
|
|
15
|
+
/**
|
|
16
|
+
* Lazily creates the shared scripts package at packages/common/scripts/.
|
|
17
|
+
* Contains infra-deploy and infra-destroy scripts that resolve
|
|
18
|
+
* credentials from infra-config and call CDK.
|
|
19
|
+
* Invoked via `tsx packages/common/scripts/src/infra-deploy.ts` from NX targets.
|
|
20
|
+
*/
|
|
21
|
+
function sharedScriptsGenerator(tree) {
|
|
22
|
+
return tslib_1.__awaiter(this, void 0, void 0, function* () {
|
|
23
|
+
const scriptsDir = (0, devkit_1.joinPathFragments)(shared_constructs_constants_1.PACKAGES_DIR, shared_constructs_constants_1.SHARED_SCRIPTS_DIR);
|
|
24
|
+
// Don't recreate if it already exists
|
|
25
|
+
if (tree.exists((0, devkit_1.joinPathFragments)(scriptsDir, 'project.json'))) {
|
|
26
|
+
return;
|
|
27
|
+
}
|
|
28
|
+
const npmScopePrefix = (0, npm_scope_1.getNpmScopePrefix)(tree);
|
|
29
|
+
const scopeAlias = (0, npm_scope_1.toScopeAlias)(npmScopePrefix);
|
|
30
|
+
yield (0, generator_1.default)(tree, {
|
|
31
|
+
name: shared_constructs_constants_1.SHARED_SCRIPTS_NAME,
|
|
32
|
+
directory: shared_constructs_constants_1.PACKAGES_DIR,
|
|
33
|
+
subDirectory: shared_constructs_constants_1.SHARED_SCRIPTS_DIR,
|
|
34
|
+
});
|
|
35
|
+
// Replace default src/ with our templates
|
|
36
|
+
tree.delete((0, devkit_1.joinPathFragments)(scriptsDir, 'src'));
|
|
37
|
+
(0, devkit_1.generateFiles)(tree, (0, devkit_1.joinPathFragments)(__dirname, 'files', shared_constructs_constants_1.SHARED_SCRIPTS_DIR, 'src'), (0, devkit_1.joinPathFragments)(scriptsDir, 'src'), { scopeAlias }, { overwriteStrategy: devkit_1.OverwriteStrategy.KeepExisting });
|
|
38
|
+
// Add AWS SDK deps as dev dependencies (used by deploy-time scripts for assumeRole)
|
|
39
|
+
(0, devkit_1.addDependenciesToPackageJson)(tree, {}, (0, versions_1.withVersions)(['@aws-sdk/client-sts', '@aws-sdk/credential-providers']));
|
|
40
|
+
// Generate README
|
|
41
|
+
(0, devkit_1.generateFiles)(tree, (0, devkit_1.joinPathFragments)(__dirname, 'files', 'common', 'readme'), scriptsDir, {
|
|
42
|
+
fullyQualifiedName: `${npmScopePrefix}${shared_constructs_constants_1.SHARED_SCRIPTS_NAME}`,
|
|
43
|
+
name: shared_constructs_constants_1.SHARED_SCRIPTS_NAME,
|
|
44
|
+
pkgMgrCmd: (0, devkit_1.getPackageManagerCommand)().exec,
|
|
45
|
+
}, { overwriteStrategy: devkit_1.OverwriteStrategy.Overwrite });
|
|
46
|
+
yield (0, format_1.formatFilesInSubtree)(tree);
|
|
47
|
+
});
|
|
48
|
+
}
|
|
49
|
+
//# sourceMappingURL=shared-scripts.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"shared-scripts.js","sourceRoot":"","sources":["../../../../../packages/nx-plugin/src/utils/shared-scripts.ts"],"names":[],"mappings":";;AA4BA,wDAgDC;;AA5ED;;;GAGG;AACH,uCAOoB;AACpB,2CAA8D;AAC9D,4EAAqD;AACrD,yCAA0C;AAC1C,qCAAgD;AAChD,+EAIuC;AAEvC;;;;;GAKG;AACH,SAAsB,sBAAsB,CAAC,IAAU;;QACrD,MAAM,UAAU,GAAG,IAAA,0BAAiB,EAAC,0CAAY,EAAE,gDAAkB,CAAC,CAAC;QAEvE,sCAAsC;QACtC,IAAI,IAAI,CAAC,MAAM,CAAC,IAAA,0BAAiB,EAAC,UAAU,EAAE,cAAc,CAAC,CAAC,EAAE,CAAC;YAC/D,OAAO;QACT,CAAC;QAED,MAAM,cAAc,GAAG,IAAA,6BAAiB,EAAC,IAAI,CAAC,CAAC;QAC/C,MAAM,UAAU,GAAG,IAAA,wBAAY,EAAC,cAAc,CAAC,CAAC;QAEhD,MAAM,IAAA,mBAAkB,EAAC,IAAI,EAAE;YAC7B,IAAI,EAAE,iDAAmB;YACzB,SAAS,EAAE,0CAAY;YACvB,YAAY,EAAE,gDAAkB;SACjC,CAAC,CAAC;QAEH,0CAA0C;QAC1C,IAAI,CAAC,MAAM,CAAC,IAAA,0BAAiB,EAAC,UAAU,EAAE,KAAK,CAAC,CAAC,CAAC;QAClD,IAAA,sBAAa,EACX,IAAI,EACJ,IAAA,0BAAiB,EAAC,SAAS,EAAE,OAAO,EAAE,gDAAkB,EAAE,KAAK,CAAC,EAChE,IAAA,0BAAiB,EAAC,UAAU,EAAE,KAAK,CAAC,EACpC,EAAE,UAAU,EAAE,EACd,EAAE,iBAAiB,EAAE,0BAAiB,CAAC,YAAY,EAAE,CACtD,CAAC;QAEF,oFAAoF;QACpF,IAAA,qCAA4B,EAC1B,IAAI,EACJ,EAAE,EACF,IAAA,uBAAY,EAAC,CAAC,qBAAqB,EAAE,+BAA+B,CAAC,CAAC,CACvE,CAAC;QAEF,kBAAkB;QAClB,IAAA,sBAAa,EACX,IAAI,EACJ,IAAA,0BAAiB,EAAC,SAAS,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,CAAC,EACzD,UAAU,EACV;YACE,kBAAkB,EAAE,GAAG,cAAc,GAAG,iDAAmB,EAAE;YAC7D,IAAI,EAAE,iDAAmB;YACzB,SAAS,EAAE,IAAA,iCAAwB,GAAE,CAAC,IAAI;SAC3C,EACD,EAAE,iBAAiB,EAAE,0BAAiB,CAAC,SAAS,EAAE,CACnD,CAAC;QAEF,MAAM,IAAA,6BAAoB,EAAC,IAAI,CAAC,CAAC;IACnC,CAAC;CAAA"}
|
package/src/utils/versions.d.ts
CHANGED
|
@@ -6,9 +6,10 @@
|
|
|
6
6
|
* Versons for TypeScript dependencies added by generators
|
|
7
7
|
*/
|
|
8
8
|
export declare const TS_VERSIONS: {
|
|
9
|
-
readonly '@aws-sdk/client-cognito-identity': "3.
|
|
10
|
-
readonly '@aws-sdk/client-dynamodb': "3.
|
|
11
|
-
readonly '@aws-sdk/
|
|
9
|
+
readonly '@aws-sdk/client-cognito-identity': "3.992.0";
|
|
10
|
+
readonly '@aws-sdk/client-dynamodb': "3.992.0";
|
|
11
|
+
readonly '@aws-sdk/client-sts': "3.992.0";
|
|
12
|
+
readonly '@aws-sdk/credential-providers': "3.992.0";
|
|
12
13
|
readonly '@aws-sdk/credential-provider-cognito-identity': "3.972.3";
|
|
13
14
|
readonly '@aws-smithy/server-apigateway': "1.0.0-alpha.10";
|
|
14
15
|
readonly '@aws-smithy/server-node': "1.0.0-alpha.10";
|
|
@@ -19,21 +20,21 @@ export declare const TS_VERSIONS: {
|
|
|
19
20
|
readonly '@middy/core': "6.4.5";
|
|
20
21
|
readonly '@nxlv/python': "22.1.0";
|
|
21
22
|
readonly '@nx-extend/terraform': "9.0.1";
|
|
22
|
-
readonly '@nx/devkit': "22.5.
|
|
23
|
-
readonly '@nx/react': "22.5.
|
|
24
|
-
readonly 'create-nx-workspace': "22.5.
|
|
25
|
-
readonly '@modelcontextprotocol/sdk': "1.
|
|
23
|
+
readonly '@nx/devkit': "22.5.1";
|
|
24
|
+
readonly '@nx/react': "22.5.1";
|
|
25
|
+
readonly 'create-nx-workspace': "22.5.1";
|
|
26
|
+
readonly '@modelcontextprotocol/sdk': "1.27.0";
|
|
26
27
|
readonly '@modelcontextprotocol/inspector': "0.19.0";
|
|
27
|
-
readonly '@strands-agents/sdk': "0.2.
|
|
28
|
-
readonly '@tanstack/react-router': "1.
|
|
29
|
-
readonly '@tanstack/router-plugin': "1.
|
|
30
|
-
readonly '@tanstack/router-generator': "1.
|
|
28
|
+
readonly '@strands-agents/sdk': "0.2.2";
|
|
29
|
+
readonly '@tanstack/react-router': "1.160.2";
|
|
30
|
+
readonly '@tanstack/router-plugin': "1.160.2";
|
|
31
|
+
readonly '@tanstack/router-generator': "1.160.1";
|
|
31
32
|
readonly '@tanstack/virtual-file-routes': "1.154.7";
|
|
32
33
|
readonly '@tanstack/router-utils': "1.158.0";
|
|
33
|
-
readonly '@cloudscape-design/board-components': "3.0.
|
|
34
|
-
readonly '@cloudscape-design/components': "3.0.
|
|
34
|
+
readonly '@cloudscape-design/board-components': "3.0.149";
|
|
35
|
+
readonly '@cloudscape-design/components': "3.0.1204";
|
|
35
36
|
readonly '@cloudscape-design/global-styles': "1.0.50";
|
|
36
|
-
readonly '@tanstack/react-query': "5.90.
|
|
37
|
+
readonly '@tanstack/react-query': "5.90.21";
|
|
37
38
|
readonly '@tanstack/react-query-devtools': "5.91.3";
|
|
38
39
|
readonly '@trpc/tanstack-react-query': "11.10.0";
|
|
39
40
|
readonly '@trpc/client': "11.10.0";
|
|
@@ -45,11 +46,11 @@ export declare const TS_VERSIONS: {
|
|
|
45
46
|
readonly '@types/express': "5.0.6";
|
|
46
47
|
readonly '@smithy/types': "4.12.0";
|
|
47
48
|
readonly aws4fetch: "1.0.20";
|
|
48
|
-
readonly 'aws-cdk': "2.
|
|
49
|
+
readonly 'aws-cdk': "2.1106.0";
|
|
49
50
|
readonly 'aws-cdk-lib': "2.238.0";
|
|
50
51
|
readonly '@aws-cdk/aws-bedrock-agentcore-alpha': "2.238.0-alpha.0";
|
|
51
52
|
readonly 'aws-xray-sdk-core': "3.12.0";
|
|
52
|
-
readonly constructs: "10.
|
|
53
|
+
readonly constructs: "10.5.0";
|
|
53
54
|
readonly cors: "2.8.6";
|
|
54
55
|
readonly 'class-variance-authority': "0.7.1";
|
|
55
56
|
readonly clsx: "2.1.1";
|
|
@@ -66,17 +67,17 @@ export declare const TS_VERSIONS: {
|
|
|
66
67
|
readonly 'react-oidc-context': "3.3.0";
|
|
67
68
|
readonly react: "19.2.4";
|
|
68
69
|
readonly 'react-dom': "19.2.4";
|
|
69
|
-
readonly rimraf: "6.1.
|
|
70
|
+
readonly rimraf: "6.1.3";
|
|
70
71
|
readonly rolldown: "1.0.0-rc.1";
|
|
71
72
|
readonly 'source-map-support': "0.5.21";
|
|
72
73
|
readonly tailwindcss: "4.1.18";
|
|
73
74
|
readonly '@tailwindcss/vite': "4.1.18";
|
|
74
75
|
readonly tsx: "4.21.0";
|
|
75
|
-
readonly 'lucide-react': "0.
|
|
76
|
+
readonly 'lucide-react': "0.574.0";
|
|
76
77
|
readonly 'radix-ui': "1.4.3";
|
|
77
|
-
readonly shadcn: "3.8.
|
|
78
|
+
readonly shadcn: "3.8.5";
|
|
78
79
|
readonly 'tw-animate-css': "1.4.0";
|
|
79
|
-
readonly 'tailwind-merge': "3.4.
|
|
80
|
+
readonly 'tailwind-merge': "3.4.1";
|
|
80
81
|
readonly 'vite-tsconfig-paths': "5.1.4";
|
|
81
82
|
readonly zod: "4.3.6";
|
|
82
83
|
readonly ws: "8.19.0";
|
|
@@ -86,7 +87,7 @@ export type ITsDepVersion = keyof typeof TS_VERSIONS;
|
|
|
86
87
|
* Add versions to the given dependencies
|
|
87
88
|
*/
|
|
88
89
|
export declare const withVersions: (deps: ITsDepVersion[]) => {
|
|
89
|
-
[k: string]: "3.
|
|
90
|
+
[k: string]: "3.992.0" | "3.972.3" | "1.0.0-alpha.10" | "2.31.0" | "6.4.5" | "22.1.0" | "9.0.1" | "22.5.1" | "1.27.0" | "0.19.0" | "0.2.2" | "1.160.2" | "1.160.1" | "1.154.7" | "1.158.0" | "3.0.149" | "3.0.1204" | "1.0.50" | "5.90.21" | "5.91.3" | "11.10.0" | "22.19.11" | "8.10.160" | "2.8.19" | "8.18.1" | "5.0.6" | "4.12.0" | "1.0.20" | "2.1106.0" | "2.238.0" | "2.238.0-alpha.0" | "3.12.0" | "10.5.0" | "2.8.6" | "0.7.1" | "2.1.1" | "3.5.3" | "0.27.3" | "5.5.5" | "5.2.1" | "2.4.2" | "4.0.0" | "2.0.0" | "19.3.2" | "3.4.1" | "3.8.1" | "3.3.0" | "19.2.4" | "6.1.3" | "1.0.0-rc.1" | "0.5.21" | "4.1.18" | "4.21.0" | "0.574.0" | "1.4.3" | "3.8.5" | "1.4.0" | "5.1.4" | "4.3.6" | "8.19.0";
|
|
90
91
|
};
|
|
91
92
|
/**
|
|
92
93
|
* Versions for Python dependencies added by generators
|
|
@@ -97,16 +98,16 @@ export declare const PY_VERSIONS: {
|
|
|
97
98
|
readonly 'aws-lambda-powertools[parser]': "==3.24.0";
|
|
98
99
|
readonly 'aws-opentelemetry-distro': "==0.15.0";
|
|
99
100
|
readonly 'bedrock-agentcore': "==0.1.7";
|
|
100
|
-
readonly boto3: "==1.42.
|
|
101
|
-
readonly checkov: "==3.2.
|
|
102
|
-
readonly fastapi: "==0.
|
|
103
|
-
readonly 'fastapi[standard]': "==0.
|
|
101
|
+
readonly boto3: "==1.42.54";
|
|
102
|
+
readonly checkov: "==3.2.505";
|
|
103
|
+
readonly fastapi: "==0.131.0";
|
|
104
|
+
readonly 'fastapi[standard]': "==0.131.0";
|
|
104
105
|
readonly mangum: "==0.21.0";
|
|
105
106
|
readonly mcp: "==1.26.0";
|
|
106
107
|
readonly 'pip-check-updates': "==0.28.0";
|
|
107
|
-
readonly 'strands-agents': "==1.
|
|
108
|
-
readonly 'strands-agents-tools': "==0.2.
|
|
109
|
-
readonly uvicorn: "==0.
|
|
108
|
+
readonly 'strands-agents': "==1.27.0";
|
|
109
|
+
readonly 'strands-agents-tools': "==0.2.21";
|
|
110
|
+
readonly uvicorn: "==0.41.0";
|
|
110
111
|
};
|
|
111
112
|
export type IPyDepVersion = keyof typeof PY_VERSIONS;
|
|
112
113
|
/**
|
package/src/utils/versions.js
CHANGED
|
@@ -9,9 +9,10 @@ exports.withPyVersions = exports.PY_VERSIONS = exports.withVersions = exports.TS
|
|
|
9
9
|
* Versons for TypeScript dependencies added by generators
|
|
10
10
|
*/
|
|
11
11
|
exports.TS_VERSIONS = {
|
|
12
|
-
'@aws-sdk/client-cognito-identity': '3.
|
|
13
|
-
'@aws-sdk/client-dynamodb': '3.
|
|
14
|
-
'@aws-sdk/
|
|
12
|
+
'@aws-sdk/client-cognito-identity': '3.992.0',
|
|
13
|
+
'@aws-sdk/client-dynamodb': '3.992.0',
|
|
14
|
+
'@aws-sdk/client-sts': '3.992.0',
|
|
15
|
+
'@aws-sdk/credential-providers': '3.992.0',
|
|
15
16
|
'@aws-sdk/credential-provider-cognito-identity': '3.972.3',
|
|
16
17
|
'@aws-smithy/server-apigateway': '1.0.0-alpha.10',
|
|
17
18
|
'@aws-smithy/server-node': '1.0.0-alpha.10',
|
|
@@ -22,21 +23,21 @@ exports.TS_VERSIONS = {
|
|
|
22
23
|
'@middy/core': '6.4.5',
|
|
23
24
|
'@nxlv/python': '22.1.0',
|
|
24
25
|
'@nx-extend/terraform': '9.0.1',
|
|
25
|
-
'@nx/devkit': '22.5.
|
|
26
|
-
'@nx/react': '22.5.
|
|
27
|
-
'create-nx-workspace': '22.5.
|
|
28
|
-
'@modelcontextprotocol/sdk': '1.
|
|
26
|
+
'@nx/devkit': '22.5.1',
|
|
27
|
+
'@nx/react': '22.5.1',
|
|
28
|
+
'create-nx-workspace': '22.5.1',
|
|
29
|
+
'@modelcontextprotocol/sdk': '1.27.0',
|
|
29
30
|
'@modelcontextprotocol/inspector': '0.19.0',
|
|
30
|
-
'@strands-agents/sdk': '0.2.
|
|
31
|
-
'@tanstack/react-router': '1.
|
|
32
|
-
'@tanstack/router-plugin': '1.
|
|
33
|
-
'@tanstack/router-generator': '1.
|
|
31
|
+
'@strands-agents/sdk': '0.2.2',
|
|
32
|
+
'@tanstack/react-router': '1.160.2',
|
|
33
|
+
'@tanstack/router-plugin': '1.160.2',
|
|
34
|
+
'@tanstack/router-generator': '1.160.1',
|
|
34
35
|
'@tanstack/virtual-file-routes': '1.154.7',
|
|
35
36
|
'@tanstack/router-utils': '1.158.0',
|
|
36
|
-
'@cloudscape-design/board-components': '3.0.
|
|
37
|
-
'@cloudscape-design/components': '3.0.
|
|
37
|
+
'@cloudscape-design/board-components': '3.0.149',
|
|
38
|
+
'@cloudscape-design/components': '3.0.1204',
|
|
38
39
|
'@cloudscape-design/global-styles': '1.0.50',
|
|
39
|
-
'@tanstack/react-query': '5.90.
|
|
40
|
+
'@tanstack/react-query': '5.90.21',
|
|
40
41
|
'@tanstack/react-query-devtools': '5.91.3',
|
|
41
42
|
'@trpc/tanstack-react-query': '11.10.0',
|
|
42
43
|
'@trpc/client': '11.10.0',
|
|
@@ -48,11 +49,11 @@ exports.TS_VERSIONS = {
|
|
|
48
49
|
'@types/express': '5.0.6',
|
|
49
50
|
'@smithy/types': '4.12.0',
|
|
50
51
|
aws4fetch: '1.0.20',
|
|
51
|
-
'aws-cdk': '2.
|
|
52
|
+
'aws-cdk': '2.1106.0',
|
|
52
53
|
'aws-cdk-lib': '2.238.0',
|
|
53
54
|
'@aws-cdk/aws-bedrock-agentcore-alpha': '2.238.0-alpha.0',
|
|
54
55
|
'aws-xray-sdk-core': '3.12.0',
|
|
55
|
-
constructs: '10.
|
|
56
|
+
constructs: '10.5.0',
|
|
56
57
|
cors: '2.8.6',
|
|
57
58
|
'class-variance-authority': '0.7.1',
|
|
58
59
|
clsx: '2.1.1',
|
|
@@ -69,17 +70,17 @@ exports.TS_VERSIONS = {
|
|
|
69
70
|
'react-oidc-context': '3.3.0',
|
|
70
71
|
react: '19.2.4',
|
|
71
72
|
'react-dom': '19.2.4',
|
|
72
|
-
rimraf: '6.1.
|
|
73
|
+
rimraf: '6.1.3',
|
|
73
74
|
rolldown: '1.0.0-rc.1',
|
|
74
75
|
'source-map-support': '0.5.21',
|
|
75
76
|
tailwindcss: '4.1.18',
|
|
76
77
|
'@tailwindcss/vite': '4.1.18',
|
|
77
78
|
tsx: '4.21.0',
|
|
78
|
-
'lucide-react': '0.
|
|
79
|
+
'lucide-react': '0.574.0',
|
|
79
80
|
'radix-ui': '1.4.3',
|
|
80
|
-
shadcn: '3.8.
|
|
81
|
+
shadcn: '3.8.5',
|
|
81
82
|
'tw-animate-css': '1.4.0',
|
|
82
|
-
'tailwind-merge': '3.4.
|
|
83
|
+
'tailwind-merge': '3.4.1',
|
|
83
84
|
'vite-tsconfig-paths': '5.1.4',
|
|
84
85
|
zod: '4.3.6',
|
|
85
86
|
ws: '8.19.0',
|
|
@@ -98,16 +99,16 @@ exports.PY_VERSIONS = {
|
|
|
98
99
|
'aws-lambda-powertools[parser]': '==3.24.0',
|
|
99
100
|
'aws-opentelemetry-distro': '==0.15.0',
|
|
100
101
|
'bedrock-agentcore': '==0.1.7',
|
|
101
|
-
boto3: '==1.42.
|
|
102
|
-
checkov: '==3.2.
|
|
103
|
-
fastapi: '==0.
|
|
104
|
-
'fastapi[standard]': '==0.
|
|
102
|
+
boto3: '==1.42.54',
|
|
103
|
+
checkov: '==3.2.505',
|
|
104
|
+
fastapi: '==0.131.0',
|
|
105
|
+
'fastapi[standard]': '==0.131.0',
|
|
105
106
|
mangum: '==0.21.0',
|
|
106
107
|
mcp: '==1.26.0',
|
|
107
108
|
'pip-check-updates': '==0.28.0',
|
|
108
|
-
'strands-agents': '==1.
|
|
109
|
-
'strands-agents-tools': '==0.2.
|
|
110
|
-
uvicorn: '==0.
|
|
109
|
+
'strands-agents': '==1.27.0',
|
|
110
|
+
'strands-agents-tools': '==0.2.21',
|
|
111
|
+
uvicorn: '==0.41.0',
|
|
111
112
|
};
|
|
112
113
|
/**
|
|
113
114
|
* Add versions to the given dependencies
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"versions.js","sourceRoot":"","sources":["../../../../../packages/nx-plugin/src/utils/versions.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"versions.js","sourceRoot":"","sources":["../../../../../packages/nx-plugin/src/utils/versions.ts"],"names":[],"mappings":"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"}
|