Skip to content

Commit

Permalink
Merge pull request #1 from hughfenghen/feat/explorer
Browse files Browse the repository at this point in the history
Feat/explorer
  • Loading branch information
hughfenghen committed Mar 3, 2024
2 parents 1f73683 + 7263299 commit 176a05d
Show file tree
Hide file tree
Showing 38 changed files with 4,328 additions and 235 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,16 +35,16 @@ jobs:
- name: Install packages dependencies
run: npm install

- name: build-benchmark
run: npm run build:benchmark
- name: build-demo
run: npm run build:demo

- name: Setup Pages
uses: actions/configure-pages@v3

- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: ./benchmark-dist/
path: ./demo-dist/

- name: Deploy to GitHub Pages
id: deployment
Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ lerna-debug.log*

node_modules
dist
benchmark-dist
demo-dist
dist-ssr
*.local

Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 2 additions & 0 deletions demo/explorer/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
build
node_modules
2 changes: 2 additions & 0 deletions demo/explorer/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
- 独立发布
- 移除初始化测试文件
20 changes: 20 additions & 0 deletions demo/explorer/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="theme-color" content="#000000">

<title>opfs-tools explorer</title>
</head>

<body>
<noscript>
You need to enable JavaScript to run this app.
</noscript>
<div id="root"></div>
<script type="module" src="./src/index.tsx"></script>
</body>

</html>

0 comments on commit 176a05d

Please sign in to comment.