cosmoremote 2.0.4 → 2.0.5
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/project-folders.js +1 -1
- package/package.json +1 -1
package/dist/project-folders.js
CHANGED
|
@@ -21,7 +21,7 @@ const SKIP_NAMES = new Set([
|
|
|
21
21
|
/** List directories under `workspaceRoot` (depth 1 + 2) so the mobile app can
|
|
22
22
|
* show a folder picker for the working directory. Hidden entries, common build
|
|
23
23
|
* outputs and dependency caches are skipped. Sorted by mtime descending. */
|
|
24
|
-
function listProjectFolders(workspaceRoot, depth =
|
|
24
|
+
function listProjectFolders(workspaceRoot, depth = 5, max = 500) {
|
|
25
25
|
if (!(0, fs_1.existsSync)(workspaceRoot))
|
|
26
26
|
return [];
|
|
27
27
|
const out = [];
|
package/package.json
CHANGED