Documentation for Simbo's Packages
    Preparing search index...

    Interface ReadWorkspacesOptions

    Options for reading workspaces.

    interface ReadWorkspacesOptions {
        concurrency?: number;
        workingDir?: string;
    }
    Index

    Properties

    concurrency?: number

    The concurrency level for reading workspaces. If not specified, it will default to 10 in non-CI environments and 5 in CI environments.

    process.env.CI ? 5 : 10
    
    workingDir?: string

    The working directory to get the workspace metadata from. Should be the path to the root of the repository. Defaults to the current working directory.

    process.cwd()