Skip to content
This repository has been archived by the owner on Oct 4, 2024. It is now read-only.

Commit

Permalink
Update copy and layout for the Learn More screen
Browse files Browse the repository at this point in the history
Closes #219.

## Added

- Adds a Makefile to assist with development

## Changed

- Updates copy and layout for the Learn More screen
- Enables support for HTML (and other options) in the Markdown parser
  for the Learn More sheet
- Updates .gitignore to ignore vim swap files
  • Loading branch information
timoguin committed Oct 2, 2023
1 parent c82a610 commit 87e2329
Show file tree
Hide file tree
Showing 4 changed files with 1,530 additions and 36 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ node_modules/
.sourcemaps
dist/
docs
*~
22 changes: 22 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
.PHONY: build example run-dev run-android

build:
npm install
npm exec -- rimraf dist
npm exec -- vue-tsc --declaration --emitDeclarationOnly
npm exec -- vite build


example: build
cd example && \
npm install && \
npm exec -- run-p type-check build-only && \
npx cap sync

run-dev: example
cd example && \
npm exec -- vite dev

run-android: example
cd example && \
npx cap run android
Loading

0 comments on commit 87e2329

Please sign in to comment.