From 595947c521a4595489a1ec1f670caec8a4f559e0 Mon Sep 17 00:00:00 2001 From: Q Kim Date: Thu, 5 Oct 2023 16:09:18 +0900 Subject: [PATCH] =?UTF-8?q?chore:=20storybook=20=EB=B0=B0=ED=8F=AC=20?= =?UTF-8?q?=EB=B0=8F=20=EB=B2=84=EC=A0=84=20=EC=97=85=EB=8D=B0=EC=9D=B4?= =?UTF-8?q?=ED=8A=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .nojekyll | 0 .npmignore | 1 + package.json | 8 +++++--- 3 files changed, 6 insertions(+), 3 deletions(-) create mode 100644 .nojekyll diff --git a/.nojekyll b/.nojekyll new file mode 100644 index 0000000..e69de29 diff --git a/.npmignore b/.npmignore index 1dffeb6..dcef6a3 100644 --- a/.npmignore +++ b/.npmignore @@ -9,6 +9,7 @@ vite-env.d.ts .eslintrc.cjs .prettierrc .stylelintrc +.nojekyll tsconfig.json tsconfig.node.json vite.config.ts diff --git a/package.json b/package.json index 8af895f..0abbfc3 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "@pium/stack-component", "homepage": "https://pium-official.github.io/stack-component", "private": false, - "version": "0.1.5", + "version": "1.0.0", "type": "module", "license": "MIT", "repository": { @@ -21,8 +21,10 @@ "build": "tsc && vite build", "storybook": "storybook dev -p 6006", "build-storybook": "storybook build", - "predeploy": "npm run build-storybook && touch storybook-static/.nojekyll", - "deploy": "gh-pages -d storybook-static -t true" + "predeploy:linux": "npm run build-storybook && touch storybook-static/.nojekyll", + "predeploy:windows": "npm run build-storybook && copy .nojekyll storybook-static", + "deploy:linux": "gh-pages -d storybook-static -t true", + "deploy:windows": "gh-pages -d storybook-static -t true" }, "dependencies": { "react": "^18.2.0",