Skip to content

Commit 1f2adc6

Browse files
committed
fix: impelement first version
1 parent e5eae34 commit 1f2adc6

9 files changed

+19423
-264
lines changed
+66
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
name: Deploy Storybook
2+
3+
on:
4+
# Runs on pushes targeting the `main` branch. Change this to `master` if you're
5+
# using the `master` branch as the default branch.
6+
push:
7+
branches: [main]
8+
9+
# Allows you to run this workflow manually from the Actions tab
10+
workflow_dispatch:
11+
12+
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
13+
permissions:
14+
contents: read
15+
pages: write
16+
id-token: write
17+
18+
concurrency:
19+
group: pages
20+
cancel-in-progress: false
21+
22+
jobs:
23+
build:
24+
runs-on: ubuntu-latest
25+
steps:
26+
- name: Checkout
27+
uses: actions/checkout@v4
28+
with:
29+
fetch-depth: 0
30+
- uses: pnpm/action-setup@v3
31+
with:
32+
version: 9
33+
- name: Setup Node
34+
uses: actions/setup-node@v4
35+
with:
36+
node-version: 20
37+
cache: pnpm # or pnpm / yarn
38+
- name: Cache dependencies
39+
uses: actions/cache@v3
40+
with:
41+
path: ~/.pnpm-store
42+
key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}
43+
restore-keys: |
44+
${{ runner.os }}-pnpm-
45+
- name: Setup Pages
46+
uses: actions/configure-pages@v4
47+
- name: Install Dependencies
48+
run: pnpm install
49+
- name: Build Storybook
50+
run: pnpm build-storybook
51+
- name: Upload artifact
52+
uses: actions/upload-pages-artifact@v3
53+
with:
54+
path: storybook-static
55+
56+
deploy:
57+
needs: build
58+
environment:
59+
name: github-pages
60+
url: ${{ steps.deployment.outputs.page_url }}
61+
runs-on: ubuntu-latest
62+
name: Deploy
63+
steps:
64+
- name: Deploy Page
65+
id: deployment
66+
uses: actions/deploy-pages@v4

package.json

+4-10
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"name": "custom-element-manifest-viewer",
3-
"version": "0.0.0-alpha-2",
3+
"author": "Amirhossein Alibakhshi",
4+
"version": "0.0.1",
45
"files": [
56
"dist/**/*.js",
67
"dist/**/*.js.map",
@@ -9,17 +10,9 @@
910
],
1011
"type": "module",
1112
"scripts": {
12-
"publish": "pnpm build && pnpm deploy",
1313
"build": "rm -rf dist && tsc && pnpm analyze && cp -r ./tokens ./dist && cp -r ./styles ./dist",
14-
"dev": "tsc --watch --preserveWatchOutput & wds",
1514
"storybook": "storybook dev -p 3001",
16-
"test": "wtr --watch",
17-
"lint": "pnpm eslint ./src/**/* --fix",
18-
"fmt": "pnpm prettier src/**/* --write --fix",
19-
"docs:dev": "vitepress dev docs",
20-
"docs:build": "vitepress build docs",
21-
"docs:preview": "vitepress preview docs",
22-
"analyze": "cem analyze --litelement --outdir dist --globs \"src/**/index.ts\""
15+
"build-storybook": "storybook build"
2316
},
2417
"devDependencies": {
2518
"@custom-elements-manifest/analyzer": "^0.10.2",
@@ -50,6 +43,7 @@
5043
"prettier": "^3.2.5",
5144
"react": "^18.2.0",
5245
"react-dom": "^18.2.0",
46+
"shiki": "^1.7.0",
5347
"storybook": "^7.6.16",
5448
"tslib": "^2.6.2",
5549
"typescript": "^5.3.3",

pnpm-lock.yaml

+14-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)