Preview feature feedback: Integrated seeding
See original GitHub issuePlease share your feedback about the integrated seeding functionality that was released in v2.15.0 in this issue.
- If you encounter a bug, please open a bug report in this repo.
- If the feature is working well for you, please share this in a comment below or leave a 👍 on this issue.
If you have any questions, don’t hesitate to ask them in the #prisma-migrate
channel in the Prisma Slack.
Issue Analytics
- State:
- Created 3 years ago
- Reactions:3
- Comments:50 (18 by maintainers)
Top Results From Across the Web
Preview Databases (Feature concept for the Prisma Data ...
In this video, you'll see a demo of an early concept our team is working on to make sure databases are smoothly integrated...
Read more >Prisma CLI preview features
Prisma CLI features that are currently in preview. ... new Prisma CLI feature, it often starts in preview so that you can test...
Read more >AppleSeed for IT Program Planning Guide
The feedback you provide on quality, usability, integration, and operation of features in your environment will help Apple identify issues, fix them, ...
Read more >Review Apps (New) - Heroku Dev Center
This article is about the new version of Heroku Review Apps ... should seed the database with comprehensive data so that the review...
Read more >Overview of Microsoft Viva Learning
Viva Learning is a centralized learning hub in Microsoft Teams that lets you seamlessly integrate learning and building skills into your day ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I really do not like the decision to make this
seed.ts
file a script with side effects (vs exporting a function that prisma would then run).This totally breaks the use case of being able to export a function from the seed file that can be manually invoked somewhere else in my code, such as some test scripts, production scripts, etc.
I urge you to consider changing the functionality to instead export a function so the seed file is side-effect free.
Changing my
tsconfig.json
to have this:"module": "commonjs",
instead of this:
"module": "esnext",
fixed it.