-
Notifications
You must be signed in to change notification settings - Fork 90
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Migrate build tooling to PNPM and NX #255
base: main
Are you sure you want to change the base?
Conversation
CC: @pavinduLakshan The migration to PNPM is complete. Could you please review it? |
@@ -0,0 +1 @@ | |||
shamefully-hoist=true |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you explain the purpose of this?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"start": "pnpm run server:local", | ||
"prestart": "pnpm run build", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we may not need run
. Please check
"start": "pnpm run server:local", | |
"prestart": "pnpm run build", | |
"start": "pnpm server:local", | |
"prestart": "pnpm build", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It works, But is it recommended?
"install:server": "cd apps/server && yarn install", | ||
"build:client": "cd apps/client && yarn run build", | ||
"build:server": "cd apps/server && yarn run build" | ||
"prebuild": "curr_dir=$(pwd) && pnpm run install:client && cd $curr_dir && pnpm run install:server", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We may not need run
part. Please validate.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It works, But is it recommended?
Migrate build tooling to PNPM and NX
Purpose
Goals