-
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
fixi(prisma): Set default cwd for runCommand task to base #4604
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 tasks
callingmedic911
approved these changes
Mar 1, 2022
thedavidprice
pushed a commit
that referenced
this pull request
Mar 1, 2022
Co-authored-by: Aditya Pandey <[email protected]>
dac09
added a commit
that referenced
this pull request
Mar 2, 2022
…ors-db-auth * 'main' of github.com:redwoodjs/redwood: (366 commits) fixi(prisma): Set default cwd for runCommand task to base (#4604) Tailwind: Generate prettier-approved code (#4541) Webhook verifiers: Add Base64Sha256 version for Svix webhooks used by Clerk auth (#4598) Update dependency cypress to v9.5.1 (#4602) Update dependency typescript to v4.6.2 (#4603) Update dependency yargs-parser to v21.0.1 (#4595) Update typescript-eslint monorepo to v5.13.0 (#4601) fix dbAuth Auth template roles logic and types, run type-check on Smoke-test CI, and resolve TS errors (#4566) Update seed.ts to reflect correct input type (#4560) feat(exec): Allow listing of scripts with rw exec to improve dx (#4600) Update dependency zx to v5.2.0 (#4596) remove packageManager yarn v3 from fixture Update dependency @types/lodash to v4.14.179 (#4582) Bump url-parse in /__fixtures__/example-todo-main-with-errors (#4584) Bump url-parse from 1.5.7 to 1.5.10 in /__fixtures__/example-todo-main (#4585) Update dependency @supabase/supabase-js to v1.30.7 (#4589) Checking jest config web api (#4529) Add Codemod to Update Fatal Error Page to support Development version (#4577) Update dependency eslint-plugin-react to v7.29.2 (#4586) Update dependency systeminformation to v5.11.5 (#4587) ...
dac09
added a commit
that referenced
this pull request
Mar 3, 2022
…rojects-to-yarn-3 * 'main' of github.com:redwoodjs/redwood: (29 commits) Update dependency eslint-config-prettier to v8.5.0 (#4631) Update dependency msw to v0.38.2 (#4630) Update dependency @clerk/types to v1.27.0 (#4628) Update dependency @clerk/clerk-js to v2.16.0 (#4627) Update dependency @types/react-dom to v17.0.13 (#4629) Update dependency @types/testing-library__jest-dom to v5.14.3 (#4624) Update dependency @types/aws-lambda to v8.10.93 (#4620) Webhook verifiers: Make them all support timestamp diff check (#4608) Add custom log payload support to logFormatter (#4619) Update dependency @types/react-dom to v17.0.12 (#4621) part II of #4623 (#4626) Update dependency systeminformation to v5.11.6 (#4611) Update dependency @clerk/clerk-js to v2.15.0 (#4606) remove Redwood extension from vscode rec (#4613) (fixture chore) pin fixture autoprefixer 9.8.8 (#4623) update yarn.lock v0.47.1 update yarn.lock fixi(prisma): Set default cwd for runCommand task to base (#4604) Update actions/checkout action to v3 (#4610) ...
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
The
runCommandTask
which currently is only used in https://github.com/redwoodjs/redwood/blob/main/packages/cli/src/lib/generatePrismaClient.js had the cwd set to the api side.This PR does the following:
This won't 100% solve the problem we're seeing with prisma, as it seems to be a problem on their side too. Tracking issue here: #4605