Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/sokhuong-uon/t4rn

Turborepo, Typescript, Three.js, Tailwind CSS, React Three Fiber, Next.js Template
https://github.com/sokhuong-uon/t4rn

3d creative-coding nextjs r3f react tailwindcss threejs turborepo typescript

Last synced: 20 days ago
JSON representation

Turborepo, Typescript, Three.js, Tailwind CSS, React Three Fiber, Next.js Template

Awesome Lists containing this project

README

        

# T4 R N: Turborepo, Typescript, Three.js, Tailwind CSS, React Three Fiber, Next.js

## **💡 Quick Tips**

|Usage | Bash Script |
|:------|:------------|
|__Notation__|`` denote `string` value
`[]` denote `list of string` value __separated by space__|
|__Install__ dependencies|`pnpm install`|
|__Install__ dependencies for app/package|`pnpm --filter add `
or
`pnpm --filter add -D `
or
`pnpm --filter add -D []`|
|__Update__ dependencies|`pnpm --filter up `
`pnpm --filter up @latest`|
|__Update__ dependencies for __all__ app/packages|`pnpm up -r `
`pnpm up -r @latest`|
|__Build all__ apps and packages|`pnpm build`|
|Run __dev__ server for __all__ apps|`pnpm dev`|
|__Filter__ app/package|`pnpm --filter build`
or `pnpm --filter --filter dev`
i.e. run `pnpm --filter tour build` to build _`tour`_ app
for more info, visit [pnpm](https://pnpm.io/filtering) or [turbo](https://turborepo.org/docs/core-concepts/filtering)|
| __Remove__ node_modules and built cache| `rm -rf ./**/**/{node_modules,dist,.next,.turbo} ./node_modules`|
|__Change/Switch__ branch| `git switch `|
|__Checkout__ branch or commit| `git checkout `|
|__Delete__ local branch| `git branch -d `|
|__Delete__ remote branch| `git push --delete `
i.e. `git push origin dev --delete origin feature1`|
## Useful Links

Learn more about the power of Turborepo:

- [Pipelines](https://turborepo.org/docs/features/pipelines)
- [Caching](https://turborepo.org/docs/features/caching)
- [Remote Caching (Beta)](https://turborepo.org/docs/features/remote-caching)
- [Scoped Tasks](https://turborepo.org/docs/features/scopes)
- [Configuration Options](https://turborepo.org/docs/reference/configuration)
- [CLI Usage](https://turborepo.org/docs/reference/command-line-reference)