- Abstract shared sql code to a new drizzle package - Adds sqlite package, not ready to publish until drizzle patches some issues - Add `transactionOptions` to allow customizing or disabling db transactions - Adds "experimental" label to the `schemaName` property until drizzle patches an issue
55 lines
955 B
TypeScript
55 lines
955 B
TypeScript
/**
|
|
* Packages that should be published to NPM
|
|
*
|
|
* Note that this does not include all packages in the monorepo
|
|
*/
|
|
export const packagePublishList = [
|
|
'payload',
|
|
'translations',
|
|
'ui',
|
|
'next',
|
|
'graphql',
|
|
'live-preview',
|
|
'live-preview-react',
|
|
'live-preview-vue',
|
|
'richtext-slate',
|
|
'richtext-lexical',
|
|
|
|
'create-payload-app',
|
|
|
|
// DB Adapters
|
|
'drizzle',
|
|
'db-mongodb',
|
|
'db-postgres',
|
|
'db-sqlite',
|
|
|
|
// Adapters
|
|
'email-nodemailer',
|
|
'email-resend',
|
|
|
|
// Storage
|
|
'storage-s3',
|
|
'storage-azure',
|
|
'storage-gcs',
|
|
'storage-vercel-blob',
|
|
'storage-uploadthing',
|
|
|
|
// Plugins
|
|
'plugin-cloud',
|
|
'plugin-cloud-storage',
|
|
'plugin-form-builder',
|
|
'plugin-nested-docs',
|
|
'plugin-redirects',
|
|
'plugin-search',
|
|
'plugin-seo',
|
|
'plugin-stripe',
|
|
'plugin-relationship-object-ids',
|
|
|
|
// Unpublished
|
|
// 'plugin-sentry'
|
|
// 'storage-uploadthing',
|
|
// 'eslint-config',
|
|
// 'eslint-plugin',
|
|
// 'live-preview-vue',
|
|
]
|