@leverege/build-tools 2.106.0 → 2.106.1
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@leverege/build-tools",
|
|
3
|
-
"version": "2.106.
|
|
3
|
+
"version": "2.106.1",
|
|
4
4
|
"description": "A collection of build / support tools for Leverege developers",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"repository": {
|
|
@@ -98,7 +98,7 @@
|
|
|
98
98
|
"js-yaml": "^4.2.0",
|
|
99
99
|
"jsdoc": "^4.0.5",
|
|
100
100
|
"ms": "^2.1.3",
|
|
101
|
-
"npm-registry-fetch": "^20.0.
|
|
101
|
+
"npm-registry-fetch": "^20.0.1",
|
|
102
102
|
"ora": "^9.4.0",
|
|
103
103
|
"p-limit": "^7.3.0",
|
|
104
104
|
"package-up": "^5.0.0",
|
package/src/Utils.mjs
CHANGED
|
@@ -634,7 +634,7 @@ export const getRepositoryDescr = async () => {
|
|
|
634
634
|
const gitHooksPath = await getGitHooksPath()
|
|
635
635
|
const { branch : gitBranch, upstream : gitUpstream } = await getGitBranchAndUpstream()
|
|
636
636
|
const subPkgs = await glob(
|
|
637
|
-
`${gitRoot}/{apps,packages}
|
|
637
|
+
`${gitRoot}/{apps,packages}/**/{package.json,pyproject.toml}`,
|
|
638
638
|
{ ignore : [ '/**/node_modules/**', '/**/.venv/**' ] }
|
|
639
639
|
)
|
|
640
640
|
const helmChart = await parseHelmChart()
|