ixahmedxi / orbitkit

🚀 Orbitkit is a monorepo starterkit aiming to be the foundation you build your next startup or big idea upon.
https://orbitkit.dev
MIT License
752 stars 44 forks source link

regarding setup #91

Open ghanishth-rajput opened 2 weeks ago

ghanishth-rajput commented 2 weeks ago

Reset changelog - this will remove all the changelog.md files in the packages

bun reset:changelog after doing this step always an error coming script not found now ,

Update workspace - this will update the workspace with the new metadata

bun update:workspace --namespace "@myapp" --ir
after this step automatically error start coming in tsconfig.jshon as well as in turbo file . also facing concurency issue when run this project

imCorfitz commented 2 weeks ago

I just took it for a spin. I couldn't seem to replicate the issue with a brand new installation. Granted it does seem that we are missing an initial */ in the reset script though - i'll make sure to update that.

Did you remember to run bun install before running the scripts? Also which version of bun are you using? Currently a minimum of version 1.1.12 is required.

https://github.com/ixahmedxi/orbitkit/assets/52371939/0a4ece48-4197-47e1-915e-2e7cba19d18f

ghanishth-rajput commented 2 weeks ago

Yes I run bun install but every time when I running bun turbo dev they throwing me concurrency issue and internal issues

On Thu, Jun 27, 2024, 12:46 Corfitz @.***> wrote:

I just took it for a spin. I couldn't seem to replicate the issue with a brand new installation. Granted it does seem that we are missing an initial */ in the reset script though - i'll make sure to update that.

Did you remember to run bun install before running the scripts? Also which version of bun are you using? Currently a minimum of version 1.1.12 is required.

https://github.com/ixahmedxi/orbitkit/assets/52371939/0a4ece48-4197-47e1-915e-2e7cba19d18f

— Reply to this email directly, view it on GitHub https://github.com/ixahmedxi/orbitkit/issues/91#issuecomment-2193966872, or unsubscribe https://github.com/notifications/unsubscribe-auth/BBE46BLNN7ICIY2UBDBB4C3ZJO34VAVCNFSM6AAAAABJ7ETPTCVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDCOJTHE3DMOBXGI . You are receiving this because you authored the thread.Message ID: @.***>

imCorfitz commented 2 weeks ago

after this step automatically error start coming in tsconfig.jshon as well as in turbo file .

Is this an error in the terminal or VSCode? If in VSCode - it likely just means you need to reload the window due to an outdated cache

imCorfitz commented 2 weeks ago

Yes I run bun install but every time when I running bun turbo dev they throwing me concurrency issue and internal issues

Please could you provide a screenshot or log of what you are experiencing?

ixahmedxi commented 2 weeks ago

Yes I run bun install but every time when I running bun turbo dev they throwing me concurrency issue and internal issues

@ghanishth-rajput

You are not supposed to run dev on everything all at once, you wouldn't be making for example changes to the marketing/web/docs apps all at once and you should be using the --filter arguments for turborepo to narrow scope the dev task for example bun turbo dev --filter=@orbitkit/web... --filter=!./packages/config/* --filter=!@orbitkit/ui --only

You can then create custom scripts in your root package.json file with these to not need the very long commands again, but it should be on a per-case basis that's why it's not baked in.