gomtm 0.0.538 → 0.0.539
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/dist/gomtm +0 -0
- package/dist/main.js +1 -2
- package/package.json +1 -1
package/dist/gomtm
CHANGED
|
Binary file
|
package/dist/main.js
CHANGED
|
@@ -3421,8 +3421,7 @@ function projectRoot(...paths) {
|
|
|
3421
3421
|
}
|
|
3422
3422
|
async function getWorkspacePackages() {
|
|
3423
3423
|
const appsDir = projectRoot(appsDirRoot);
|
|
3424
|
-
const
|
|
3425
|
-
const result = await [packageDir, appsDir].flatMap((dir1) => {
|
|
3424
|
+
const result = await [appsDir].flatMap((dir1) => {
|
|
3426
3425
|
const appPackages = readdirSync(dir1, { recursive: false }).filter((x) => {
|
|
3427
3426
|
const packageJson = resolve(dir1, x.toString(), "package.json");
|
|
3428
3427
|
return existsSync(packageJson);
|