Skip to content

Commit

Permalink
v0.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
lemon3 committed Apr 15, 2024
1 parent cd2ce0a commit 3b85758
Show file tree
Hide file tree
Showing 23 changed files with 4,299 additions and 570 deletions.
7 changes: 0 additions & 7 deletions .eslintignore

This file was deleted.

24 changes: 0 additions & 24 deletions .eslintrc.js

This file was deleted.

54 changes: 54 additions & 0 deletions .github/workflows/build-and-deploy-docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
# Simple workflow for deploying static content to GitHub Pages
name: Deploy static content to Pages

on:
# Runs on pushes targeting the default branch
push:
branches: ['main']

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# Sets the GITHUB_TOKEN permissions to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write

# Allow one concurrent deployment
concurrency:
group: 'pages'
cancel-in-progress: true

jobs:
# Single deploy job since we're just deploying
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
with:
version: 8
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Build docs / demo
run: pnpm run docs
- name: Setup Pages
uses: actions/configure-pages@v4
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
# Upload docs folder
path: './docs'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
_notes
.DS_Store
.phpintel
.vscode
*.log
*.sublime-*
node_modules
package
yarn.lock
*.tgz
docs
package
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## v0.1.3
### Added or Changed
- bug fixing
- update build tools

## v0.1.2
### Added or Changed
- demo update
Expand Down
171 changes: 0 additions & 171 deletions dist/zero2one.esm.js

This file was deleted.

2 changes: 0 additions & 2 deletions dist/zero2one.esm.min.js

This file was deleted.

4 changes: 0 additions & 4 deletions dist/zero2one.esm.min.js.LICENSE.txt

This file was deleted.

Loading

0 comments on commit 3b85758

Please sign in to comment.