Skip to content

Commit

Permalink
chore: revise build system, re-organize docs and add gifs
Browse files Browse the repository at this point in the history
  • Loading branch information
haberdashPI committed Aug 7, 2021
1 parent 84d3ab7 commit 8568bbe
Show file tree
Hide file tree
Showing 28 changed files with 21,489 additions and 735 deletions.
54 changes: 54 additions & 0 deletions .github/workflows/generate-docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
name: Generate Project Documentation
on:
push:
branches:
- main
pull_request:
jobs:
generate_docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: '16'

- name: Cache node modules
uses: actions/cache@v2
env:
cache-name: cache-node-modules
with:
# npm cache files are stored in `~/.npm` on Linux/macOS
path: ~/.npm
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- run: npm i
- run: npm run build-docs
if: github.ref == 'refs/heads/main'
name: Build Stable Docs
- run: npm run build-dev-docs
if: github.ref != 'refs/heads/main'
name: Build Dev Docs

- name: Deploy Stable Docs
if: github.ref == 'refs/heads/main'
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./doc_dist
destination_dir: stable

- name: Deploy Dev Docs
if: github.ref != 'refs/heads/main'
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./doc_dist
destination_dir: dev

3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
out
node_modules
docs/build/*
dist/*
dist_docs/*
.vscode-test/
*.vsix
.DS_Store
Expand Down
6 changes: 4 additions & 2 deletions .vscodeignore
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
.vscode/**
.vscode-test/**
out/test/**
docs/**
doc_dist/**
src/**
.parcel-cache/*
images/**
.gitignore
vsc-extension-quickstart.md
**/tsconfig.json
**/.eslintrc.json
**/*.map
**/*.ts
node_modules
webpack.config.js
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
# Change Log

## [0.1.11]
- **Bugfix**: failure in symmetric motion across lines

## [0.1.10]
- **Feature**: Splitting / creating / filtering commands now accept
a command argument `text` as an alternative to opening an input dialog.

## [0.1.9]
- **Bufx**: downstream vulnerabilities
- **Bufix**: downstream vulnerabilities

## [0.1.8]
- **Feature**: New symmetric (start/end of selection) commands:
Expand Down
Loading

0 comments on commit 8568bbe

Please sign in to comment.