BREAKING CHANGE: Rename `@payloadcms/plugin-cloud` to `@payloadcms/payload-cloud`. Anyone using the existing plugin will need to switch to using the new package. ## Why? Since v3 will be using _fixed versioning_, all versions of `^3` must be available. Unfortunately, the `@payloadcms/plugin-cloud` version has already breached that version number. Renaming will allow it to be on the same version as other monorepo packages. Additionally, the name `plugin-cloud` is quite ambiguous and sometimes is confused with `plugin-cloud-storage`, so using `payload-cloud` feels like a good move to make this more evident.
56 lines
960 B
TypeScript
56 lines
960 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',
|
|
'db-vercel-postgres',
|
|
|
|
// Adapters
|
|
'email-nodemailer',
|
|
'email-resend',
|
|
|
|
// Storage
|
|
'storage-s3',
|
|
'storage-azure',
|
|
'storage-gcs',
|
|
'storage-vercel-blob',
|
|
'storage-uploadthing',
|
|
|
|
// Plugins
|
|
'payload-cloud',
|
|
'plugin-cloud',
|
|
'plugin-cloud-storage',
|
|
'plugin-form-builder',
|
|
'plugin-nested-docs',
|
|
'plugin-redirects',
|
|
'plugin-search',
|
|
'plugin-sentry',
|
|
'plugin-seo',
|
|
'plugin-stripe',
|
|
|
|
// Unpublished
|
|
// 'storage-uploadthing',
|
|
// 'eslint-config',
|
|
// 'eslint-plugin',
|
|
// 'live-preview-vue',
|
|
]
|