From 904ec0160e0b99745132532f3bd35b55aeefaa2c Mon Sep 17 00:00:00 2001 From: Jacob Fletcher Date: Wed, 24 Jul 2024 10:07:34 -0400 Subject: [PATCH] feat: adds @payloadcms/live-preview-vue to release pipeline (#7328) --- package.json | 1 + packages/live-preview-react/package.json | 2 +- packages/live-preview-vue/package.json | 4 ++-- scripts/lib/publishList.ts | 1 + tsconfig.json | 6 ++++++ 5 files changed, 11 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index f47a58366..8acfb1987 100644 --- a/package.json +++ b/package.json @@ -22,6 +22,7 @@ "build:graphql": "turbo build --filter graphql", "build:live-preview": "turbo build --filter live-preview", "build:live-preview-react": "turbo build --filter live-preview-react", + "build:live-preview-vue": "turbo build --filter live-preview-vue", "build:next": "turbo build --filter next", "build:payload": "turbo build --filter payload", "build:plugin-cloud": "turbo build --filter plugin-cloud", diff --git a/packages/live-preview-react/package.json b/packages/live-preview-react/package.json index 5a392ea93..65ced78c5 100644 --- a/packages/live-preview-react/package.json +++ b/packages/live-preview-react/package.json @@ -1,7 +1,7 @@ { "name": "@payloadcms/live-preview-react", "version": "3.0.0-beta.68", - "description": "The official live preview React SDK for Payload", + "description": "The official React SDK for Payload Live Preview", "homepage": "https://payloadcms.com", "repository": { "type": "git", diff --git a/packages/live-preview-vue/package.json b/packages/live-preview-vue/package.json index af1ec87d0..070fce520 100644 --- a/packages/live-preview-vue/package.json +++ b/packages/live-preview-vue/package.json @@ -1,7 +1,7 @@ { "name": "@payloadcms/live-preview-vue", - "version": "0.1.0", - "description": "The official live preview Vue SDK for Payload", + "version": "3.0.0-beta.68", + "description": "The official Vue SDK for Payload Live Preview", "homepage": "https://payloadcms.com", "repository": { "type": "git", diff --git a/scripts/lib/publishList.ts b/scripts/lib/publishList.ts index fbcf420f6..c50535b5e 100644 --- a/scripts/lib/publishList.ts +++ b/scripts/lib/publishList.ts @@ -13,6 +13,7 @@ export const packagePublishList = [ 'db-postgres', 'live-preview', 'live-preview-react', + 'live-preview-vue', 'richtext-slate', 'richtext-lexical', diff --git a/tsconfig.json b/tsconfig.json index 81338ccf9..1e8f08540 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -45,6 +45,9 @@ "@payloadcms/live-preview-react": [ "./packages/live-preview-react/src/index.ts" ], + "@payloadcms/live-preview-vue": [ + "./packages/live-preview-vue/src/index.ts" + ], "@payloadcms/ui": [ "./packages/ui/src/exports/client/index.ts" ], @@ -91,6 +94,9 @@ { "path": "./packages/live-preview-react" }, + { + "path": "./packages/live-preview-vue" + }, { "path": "./packages/next" },