@codedrifters/configulator 0.0.89 → 0.0.90
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/lib/index.d.mts +36 -1
- package/lib/index.d.ts +36 -1
- package/lib/index.js +38 -38
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +37 -38
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
package/lib/index.mjs
CHANGED
|
@@ -527,6 +527,42 @@ var AwsDeploymentConfig = class _AwsDeploymentConfig extends Component3 {
|
|
|
527
527
|
}
|
|
528
528
|
};
|
|
529
529
|
|
|
530
|
+
// src/versions.ts
|
|
531
|
+
var VERSION = {
|
|
532
|
+
/**
|
|
533
|
+
* CDK CLI for workflows and command line operations.
|
|
534
|
+
*
|
|
535
|
+
* CLI and lib are versioned separately, so this is the CLI version.
|
|
536
|
+
*/
|
|
537
|
+
AWS_CDK_CLI_VERSION: "2.1104.0",
|
|
538
|
+
/**
|
|
539
|
+
* CDK Version to use for construct projects.
|
|
540
|
+
*
|
|
541
|
+
* CLI and lib are versioned separately, so this is the lib version.
|
|
542
|
+
*/
|
|
543
|
+
AWS_CDK_LIB_VERSION: "2.237.1",
|
|
544
|
+
/**
|
|
545
|
+
* Version of the AWS Constructs library to use.
|
|
546
|
+
*/
|
|
547
|
+
AWS_CONSTRUCTS_VERSION: "10.4.5",
|
|
548
|
+
/**
|
|
549
|
+
* Version of Node.js to use in CI workflows at github actions.
|
|
550
|
+
*/
|
|
551
|
+
NODE_WORKFLOWS: "24",
|
|
552
|
+
/**
|
|
553
|
+
* Version of PNPM to use in workflows at github actions.
|
|
554
|
+
*/
|
|
555
|
+
PNPM_VERSION: "10.28.2",
|
|
556
|
+
/**
|
|
557
|
+
* Version of Projen to use.
|
|
558
|
+
*/
|
|
559
|
+
PROJEN_VERSION: "0.99.9",
|
|
560
|
+
/**
|
|
561
|
+
* What version of the turborepo library should we use?
|
|
562
|
+
*/
|
|
563
|
+
TURBO_VERSION: "2.8.3"
|
|
564
|
+
};
|
|
565
|
+
|
|
530
566
|
// src/jsii/jsii-faker.ts
|
|
531
567
|
import * as spec from "@jsii/spec";
|
|
532
568
|
import { Component as Component4, JsonFile as JsonFile2 } from "projen";
|
|
@@ -685,44 +721,6 @@ import {
|
|
|
685
721
|
} from "projen/lib/javascript";
|
|
686
722
|
import { ReleaseTrigger } from "projen/lib/release";
|
|
687
723
|
import { merge } from "ts-deepmerge";
|
|
688
|
-
|
|
689
|
-
// src/versions.ts
|
|
690
|
-
var VERSION = {
|
|
691
|
-
/**
|
|
692
|
-
* CDK CLI for workflows and command line operations.
|
|
693
|
-
*
|
|
694
|
-
* CLI and lib are versioned separately, so this is the CLI version.
|
|
695
|
-
*/
|
|
696
|
-
AWS_CDK_CLI_VERSION: "2.1104.0",
|
|
697
|
-
/**
|
|
698
|
-
* CDK Version to use for construct projects.
|
|
699
|
-
*
|
|
700
|
-
* CLI and lib are versioned separately, so this is the lib version.
|
|
701
|
-
*/
|
|
702
|
-
AWS_CDK_LIB_VERSION: "2.237.1",
|
|
703
|
-
/**
|
|
704
|
-
* Version of the AWS Constructs library to use.
|
|
705
|
-
*/
|
|
706
|
-
AWS_CONSTRUCTS_VERSION: "10.4.5",
|
|
707
|
-
/**
|
|
708
|
-
* Version of Node.js to use in CI workflows at github actions.
|
|
709
|
-
*/
|
|
710
|
-
NODE_WORKFLOWS: "24",
|
|
711
|
-
/**
|
|
712
|
-
* Version of PNPM to use in workflows at github actions.
|
|
713
|
-
*/
|
|
714
|
-
PNPM_VERSION: "10.28.2",
|
|
715
|
-
/**
|
|
716
|
-
* Version of Projen to use.
|
|
717
|
-
*/
|
|
718
|
-
PROJEN_VERSION: "0.99.9",
|
|
719
|
-
/**
|
|
720
|
-
* What version of the turborepo library should we use?
|
|
721
|
-
*/
|
|
722
|
-
TURBO_VERSION: "2.8.3"
|
|
723
|
-
};
|
|
724
|
-
|
|
725
|
-
// src/projects/typescript-project.ts
|
|
726
724
|
var TypeScriptProject = class extends typescript.TypeScriptProject {
|
|
727
725
|
constructor(userOptions) {
|
|
728
726
|
const pnpmVersion = userOptions.parent && userOptions.parent instanceof MonorepoProject ? userOptions.parent.pnpmVersion : VERSION.PNPM_VERSION;
|
|
@@ -1492,6 +1490,7 @@ export {
|
|
|
1492
1490
|
TurboRepoTask,
|
|
1493
1491
|
TypeScriptConfig,
|
|
1494
1492
|
TypeScriptProject,
|
|
1493
|
+
VERSION,
|
|
1495
1494
|
VSCodeConfig
|
|
1496
1495
|
};
|
|
1497
1496
|
//# sourceMappingURL=index.mjs.map
|