Skip to content

Commit

Permalink
feat(prisma-studio): remove --experimental in 2.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
marcjulian committed Sep 17, 2020
1 parent 4d08a0f commit 13b19a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion schematics/nestjs-prisma/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ function addNpmScripts(_options: Schema): Rule {
pkg.scripts['prisma:generate'] = 'npx prisma generate';
pkg.scripts['prisma:generate:watch'] = 'npx prisma generate --watch';
pkg.scripts['prisma:save'] = 'npx prisma migrate save --experimental';
pkg.scripts['prisma:studio'] = 'npx prisma studio --experimental';
pkg.scripts['prisma:studio'] = 'npx prisma studio';
pkg.scripts['prisma:up'] = 'npx prisma migrate up --experimental';

tree.overwrite(pkgPath, JSON.stringify(pkg, null, 2));
Expand Down

0 comments on commit 13b19a1

Please sign in to comment.