From 42429b33e067b0e311f65866983ec1afc6f8d852 Mon Sep 17 00:00:00 2001 From: Joao Heringer Date: Wed, 3 Jul 2024 10:57:18 -0300 Subject: [PATCH 1/2] A dummy change to test Quick Editor workflows --- web/packages/quick-editor/playground/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/packages/quick-editor/playground/index.ts b/web/packages/quick-editor/playground/index.ts index 4183b5c..e1fb6cf 100644 --- a/web/packages/quick-editor/playground/index.ts +++ b/web/packages/quick-editor/playground/index.ts @@ -4,7 +4,7 @@ import type { ProfileUpdatedType } from '../dist'; document.addEventListener( 'DOMContentLoaded', () => { new GravatarQuickEditor( { email: 'joao.heringer@automattic.com', - scope: [ 'avatars' ], + scope: [ 'avatars', 'about' ], editorTriggerSelector: '#edit-avatar', avatarSelector: '.avatar', } ); From 53129f6f8d6a980564d0559e688734464a1baeba Mon Sep 17 00:00:00 2001 From: Joao Heringer Date: Wed, 3 Jul 2024 11:36:47 -0300 Subject: [PATCH 2/2] Ignore /dist on playground files --- web/packages/quick-editor/playground/index.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/web/packages/quick-editor/playground/index.ts b/web/packages/quick-editor/playground/index.ts index e1fb6cf..ddad67f 100644 --- a/web/packages/quick-editor/playground/index.ts +++ b/web/packages/quick-editor/playground/index.ts @@ -1,4 +1,7 @@ +/* eslint-disable import/no-unresolved */ +// @ts-ignore import { GravatarQuickEditor, GravatarQuickEditorCore } from '../dist'; +// @ts-ignore import type { ProfileUpdatedType } from '../dist'; document.addEventListener( 'DOMContentLoaded', () => {