-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'dev' into refactoring/#308
- Loading branch information
Showing
27 changed files
with
473 additions
and
155 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: "Chromatic Deployment" | ||
run-name: ${{ github.actor }}의 스토리북 배포 | ||
|
||
on: push | ||
|
||
jobs: | ||
chromatic: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v1 | ||
- run: yarn | ||
|
||
- uses: chromaui/action@v1 | ||
|
||
with: | ||
projectToken: ${{ secrets.CHROMATIC_TOKEN }} | ||
token: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
@storybook/cli v8.0.6 | ||
|
||
info => Cleaning outputDir: ../../../var/folders/2b/yxbhgn2s0lsc7bwp2jj82r100000gn/T/chromatic--98723-Uz50qJYBqFzg | ||
info => Loading presets | ||
WARN The "@storybook/addon-mdx-gfm" addon is meant as a migration assistant for Storybook 8.0; and will likely be removed in a future version. | ||
WARN It's recommended you read this document: | ||
WARN https://storybook.js.org/docs/react/writing-docs/mdx#lack-of-github-flavored-markdown-gfm | ||
WARN | ||
WARN Once you've made the necessary changes, you can remove the addon from your package.json and storybook config. | ||
info => Building manager.. | ||
info => Manager built (128 ms) | ||
info => Building preview.. | ||
info Addon-docs: using MDX3 | ||
info => Using implicit CSS loaders | ||
info => Using SWC as compiler | ||
info => Using default Webpack5 setup | ||
info Using tsconfig paths for react-docgen | ||
WARN asset size limit: The following asset(s) exceed the recommended size limit (244 KiB). | ||
WARN This can impact web performance. | ||
WARN Assets: | ||
WARN static/media/Maplestory_Light.9d949758.ttf (1.29 MiB) | ||
WARN static/media/Pretendard-Black.6ffb4c12.ttf (2.54 MiB) | ||
WARN static/media/Pretendard-Bold.be4e300c.ttf (2.54 MiB) | ||
WARN static/media/Pretendard-ExtraBold.cffbbae6.ttf (2.55 MiB) | ||
WARN static/media/Pretendard-ExtraLight.3a1f8545.ttf (2.71 MiB) | ||
WARN static/media/Pretendard-Light.be916151.ttf (2.68 MiB) | ||
WARN static/media/Pretendard-Medium.07e5324d.ttf (2.58 MiB) | ||
WARN static/media/Pretendard-Regular.fbe5b096.ttf (2.6 MiB) | ||
WARN static/media/Pretendard-SemiBold.8ae7df0e.ttf (2.55 MiB) | ||
WARN static/media/Pretendard-Thin.23965237.ttf (2.74 MiB) | ||
WARN 930.18f3dd63.iframe.bundle.js (247 KiB) | ||
WARN 664.8060e2ba.iframe.bundle.js (622 KiB) | ||
WARN 898.4e51cdbe.iframe.bundle.js (1.68 MiB) | ||
WARN 589.49d6c4a8.iframe.bundle.js (628 KiB) | ||
WARN entrypoint size limit: The following entrypoint(s) combined asset size exceeds the recommended limit (244 KiB). This can impact web performance. | ||
WARN Entrypoints: | ||
WARN main (1.76 MiB) | ||
WARN runtime~main.411d4294.iframe.bundle.js | ||
WARN 898.4e51cdbe.iframe.bundle.js | ||
WARN main.e58a6988.iframe.bundle.js | ||
WARN | ||
info => Preview built (11 s) | ||
info => Output directory: /var/folders/2b/yxbhgn2s0lsc7bwp2jj82r100000gn/T/chromatic--98723-Uz50qJYBqFzg |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
"use client"; | ||
|
||
export default function GlobalError({ | ||
error, | ||
reset, | ||
}: { | ||
error: Error & { digest?: string }; | ||
reset: () => void; | ||
}) { | ||
console.log(error); | ||
|
||
return ( | ||
<html> | ||
<body> | ||
<main> | ||
<section className="flex h-full flex-col items-center justify-center"> | ||
<h2 className="text-center">앗 문제가 생겼어요!</h2> | ||
<button | ||
className="mt-4 rounded-md bg-green-500 px-4 py-2 text-small text-white transition-colors" | ||
onClick={() => reset()} | ||
> | ||
다시 시도하기 | ||
</button> | ||
</section> | ||
</main> | ||
</body> | ||
</html> | ||
); | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.