diff --git a/development.md b/development.md index c8e5aad0..73b9aced 100644 --- a/development.md +++ b/development.md @@ -23,6 +23,18 @@ You can run all the packages in development mode using the following command: pnpm dev ``` +Or you can run development for the individual packages using the following command: + +```bash +pnpm dev:[dirname] +``` + +For `React` it would be: + +```bash +pnpm dev:react +``` + ### Build You can build all packages using the following command: @@ -37,7 +49,7 @@ Or you can run build for the individual packages using the following command: pnpm build:[dirname] ``` -For react it would be +For `React` it would be: ```bash pnpm build:react diff --git a/package.json b/package.json index bdbf3a8d..97c9052d 100644 --- a/package.json +++ b/package.json @@ -12,6 +12,9 @@ "build:example:solid": "turbo run build:example --filter=@example/solidjs", "build:example:svelte": "turbo run build:example --filter=@example/svelte", "dev": "turbo run dev --parallel", + "dev:react": "turbo run dev --filter=@example/react", + "dev:solid": "turbo run dev --filter=@example/solidjs", + "dev:svelte": "turbo run dev --filter=@example/svelte", "lint": "turbo run lint", "format": "prettier --write \"**/*.{ts,tsx,md}\"", "clean:all": "turbo run clean:all",