@codedrifters/configulator 0.0.101 → 0.0.103
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 +2 -2
- package/lib/index.d.ts +2 -2
- package/lib/index.js +8 -4
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +8 -4
- package/lib/index.mjs.map +1 -1
- package/package.json +3 -3
package/lib/index.mjs
CHANGED
|
@@ -760,7 +760,7 @@ var VERSION = {
|
|
|
760
760
|
/**
|
|
761
761
|
* Version of the AWS Constructs library to use.
|
|
762
762
|
*/
|
|
763
|
-
AWS_CONSTRUCTS_VERSION: "10.
|
|
763
|
+
AWS_CONSTRUCTS_VERSION: "10.5.0",
|
|
764
764
|
/**
|
|
765
765
|
* Version of Node.js to use in CI workflows at github actions.
|
|
766
766
|
*/
|
|
@@ -768,7 +768,7 @@ var VERSION = {
|
|
|
768
768
|
/**
|
|
769
769
|
* Version of PNPM to use in workflows at github actions.
|
|
770
770
|
*/
|
|
771
|
-
PNPM_VERSION: "10.
|
|
771
|
+
PNPM_VERSION: "10.30.0",
|
|
772
772
|
/**
|
|
773
773
|
* Version of Projen to use.
|
|
774
774
|
*/
|
|
@@ -1007,10 +1007,14 @@ var TypeScriptProject = class extends typescript.TypeScriptProject {
|
|
|
1007
1007
|
} : {}
|
|
1008
1008
|
},
|
|
1009
1009
|
/**
|
|
1010
|
-
* Only release when the package folder
|
|
1010
|
+
* Only release when the package folder source content or package.json
|
|
1011
|
+
* (version, dependencies) changes.
|
|
1011
1012
|
*/
|
|
1012
1013
|
releaseTrigger: ReleaseTrigger.continuous({
|
|
1013
|
-
paths: [
|
|
1014
|
+
paths: [
|
|
1015
|
+
`${userOptions.outdir}/src/**`,
|
|
1016
|
+
`${userOptions.outdir}/package.json`
|
|
1017
|
+
]
|
|
1014
1018
|
})
|
|
1015
1019
|
};
|
|
1016
1020
|
const options = merge(defaultOptions, userOptions);
|