@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.mjs
CHANGED
|
@@ -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);
|