-
Notifications
You must be signed in to change notification settings - Fork 1k
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
Yarn v3 Project Testing #4554
Comments
__Update: here's the problem.
|
Prisma Error first run of
|
Current ErrorsDev
Buildnote: fails for both build api and build web. Following is output for build
Test
type-check
setup ui tailwindcss
rwfw
|
@thedavidprice I think I know why most of those commands are breaking: dom@evaM1 ~/p/r/_/y/exp (main)> yarn why @redwoodjs/cli
└─ @redwoodjs/core@npm:0.46.1-experimental.53
└─ @redwoodjs/cli@npm:0.46.1 (via npm:^0.46.1-experimental.53) It looks like const generatePrismaCommand = schema => {
if (skipTask(schema)) {
return {};
}
return {
cmd: 'yarn prisma', // this wont' work anymore; it's updated it in my PR
args: ['generate', schema && `--schema="${schema}"`]
};
}; |
I had a look at core's package.json ( "@redwoodjs/cli": "^0.46.1-experimental.53",
"@redwoodjs/eslint-config": "^0.46.1-experimental.53",
"@redwoodjs/internal": "^0.46.1-experimental.53",
"@redwoodjs/testing": "^0.46.1-experimental.53", |
Here's the updated CLI check list after setting this resolution in the root workspace's package.json: "resolutions": {
"@redwoodjs/cli": "0.46.1-experimental.53"
}
|
Based on my own experiences, I'll strongly recommend to use 'pnpm' instead of 'yarn 3'. |
Thanks again, @Ramandhingra! My reply here |
cc @jtoar and @dac09
related to PR #4444
Project Testing: Setup and Upgrade
npx create-redwood-app@experimental
Checks
The text was updated successfully, but these errors were encountered: