@codedrifters/configulator 0.0.101 → 0.0.102
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.js +6 -2
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +6 -2
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
package/lib/index.js
CHANGED
|
@@ -1023,10 +1023,14 @@ var TypeScriptProject = class extends import_projen5.typescript.TypeScriptProjec
|
|
|
1023
1023
|
} : {}
|
|
1024
1024
|
},
|
|
1025
1025
|
/**
|
|
1026
|
-
* Only release when the package folder
|
|
1026
|
+
* Only release when the package folder source content or package.json
|
|
1027
|
+
* (version, dependencies) changes.
|
|
1027
1028
|
*/
|
|
1028
1029
|
releaseTrigger: import_release.ReleaseTrigger.continuous({
|
|
1029
|
-
paths: [
|
|
1030
|
+
paths: [
|
|
1031
|
+
`${userOptions.outdir}/src/**`,
|
|
1032
|
+
`${userOptions.outdir}/package.json`
|
|
1033
|
+
]
|
|
1030
1034
|
})
|
|
1031
1035
|
};
|
|
1032
1036
|
const options = (0, import_ts_deepmerge.merge)(defaultOptions, userOptions);
|