Sort the prisma schema found at the given path in ascending order.
import { sortPrismaSchema } from 'prisma-schema-sorter' await sortPrismaSchema("./prisma/schema.prisma") // => Success
var sortPrismaSchema = require('prisma-schema-sorter').sortPrismaSchema; sortPrismaSchema().then(); // => Success
path to the prisma schema
Generated using TypeDoc
Sort the prisma schema found at the given path in ascending order.
Example (es module)
import { sortPrismaSchema } from 'prisma-schema-sorter' await sortPrismaSchema("./prisma/schema.prisma") // => Success
Example (commonjs)
var sortPrismaSchema = require('prisma-schema-sorter').sortPrismaSchema; sortPrismaSchema().then(); // => Success