Skip to content

Commit ae69495

Browse files
committed
feat: add preview information
1 parent b4461a0 commit ae69495

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.github/workflows/publish.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ jobs:
2525
# Creates the JS & CSS files, and registry.json, and puts them in dist/widget-registry
2626
yarn dlx @js-widgets/webpack-cli \
2727
--debug \
28-
--existing-registry="${PUBLIC_URL}/registry.json" \
28+
--existing-registry="${PUBLIC_URL}/widget-registry/registry.json" \
2929
--output-dir="${DIST_DIR}/widget-registry" \
3030
.
3131
env:
3232
DEBUG: '*,-babel*,-eslint*'
33-
PUBLIC_URL: https://js-widgets.github.io/registry-starterkit-react/${{ env.current_branch }}/widget-registry
33+
PUBLIC_URL: https://js-widgets.github.io/registry-starterkit-react/${{ env.current_branch }}
3434
PUBLIC_ASSETS_URL: https://js-widgets.github.io/registry-starterkit-react/${{ env.current_branch }}/static
3535
DIST_DIR: dist/${{ env.current_branch }}
3636
NODE_ENV: production
@@ -50,7 +50,7 @@ jobs:
5050
DIST_DIR: dist/${{ env.current_branch }}
5151
- name: Prepare translations
5252
run: |
53-
# The public files of each widget need to be moved to /static so they are uploaded correctly.
53+
# The translations of each widget need to be moved to /translations so they are uploaded correctly.
5454
TEMP_DIR=$(mktemp --directory)
5555
mkdir --parents "${TEMP_DIR}/translations"
5656
# Find all the folders with the name "compiledStrings" and copy them to the temporary directory.

src/apps/emoji-cards/EmojiCards.widget.js

+3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ module.exports = {
44
title: 'Emoji Cards',
55
status: 'stable',
66
description: 'Incredible emoji trading cards',
7+
preview: {
8+
url: `${process.env.PUBLIC_URL}/storybook/iframe.html?id=widgets-emoji-cards-components--cat&viewMode=story`,
9+
},
710
useExternalPeerDependencies: ['react', 'react-dom', 'react-intl'],
811
settingsSchema: {
912
type: 'object',

src/apps/emoji-cards/thumbnail.png

65.4 KB
Loading

0 commit comments

Comments
 (0)