diff --git a/README.md b/README.md index fc3a07e..ba300b9 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,13 @@ Starters collection based on pnpm workspace. **Note: This is a personal project, it is not community oriented, so the direction of the iteration will be entirely based on the authors' own opinions.** +## Getting Started + +- [Use this template](https://github.com/LinbuduLab/starter-collections/generate) and clone it. +- **Do not run `pnpm install` at once**, run `pnpm init:workspace` to only install dependencies which is required by CLI. +- Pick your starters. +- Move on! + ## Packages ### React diff --git a/scripts/init-workspace.ts b/scripts/init-workspace.ts index 208a420..2922550 100644 --- a/scripts/init-workspace.ts +++ b/scripts/init-workspace.ts @@ -14,8 +14,7 @@ export default function useInitWorkspaceAfterInstall(cli: CAC) { const chosedStarters = await CLIUtils.createPackageMultiSelector( 'chosedStarters', - 'Pick starters to initialize workspace', - true + 'Pick starters to initialize workspace' ); const excluded = chosedStarters.includes(Constants.noneIdentifier) diff --git a/scripts/utils.ts b/scripts/utils.ts index 2234395..71b86f1 100644 --- a/scripts/utils.ts +++ b/scripts/utils.ts @@ -168,7 +168,7 @@ export class CLIUtils { public static async createPackageMultiSelector( name: T, message: string, - color = true + color = false ): Promise { const existPackages = CLIUtils.existPackages;