| | |
| | | |
| | | | Configuration option | Value | |
| | | | ---------------------- | ------------------ | |
| | | | Production branch | `v4-alpha` | |
| | | | Production branch | `v4` | |
| | | | Framework preset | `None` | |
| | | | Build command | `npx quartz build` | |
| | | | Build output directory | `public` | |
| | |
| | | on: |
| | | push: |
| | | branches: |
| | | - v4-alpha |
| | | - v4 |
| | | |
| | | permissions: |
| | | contents: read |
| | |
| | | ```shell |
| | | git clone https://github.com/jackyzha0/quartz.git |
| | | cd quartz |
| | | git checkout v4-alpha |
| | | git checkout v4 |
| | | npm i |
| | | npx quartz create |
| | | ``` |
| | |
| | | As you already have Quartz locally, you don't need to fork or clone it again. Simply just checkout the alpha branch, install the dependencies, and import your old vault. |
| | | |
| | | ```bash |
| | | git checkout v4-alpha |
| | | git pull upstream v4-alpha |
| | | git checkout v4 |
| | | git pull upstream v4 |
| | | npm i |
| | | npx quartz create |
| | | ``` |
| | |
| | | - [Abhijeet's Math Wiki](https://abhmul.github.io/quartz/Math-Wiki/) |
| | | - [Mike's AI Garden 🤖🪴](https://mwalton.me/) |
| | | |
| | | If you want to see your own on here, submit a [Pull Request adding yourself to this file](https://github.com/jackyzha0/quartz/blob/v4-alpha/content/showcase.md)! |
| | | If you want to see your own on here, submit a [Pull Request adding yourself to this file](https://github.com/jackyzha0/quartz/blob/v4/content/showcase.md)! |
| | |
| | | |
| | | const ORIGIN_NAME = "origin" |
| | | const UPSTREAM_NAME = "upstream" |
| | | const QUARTZ_SOURCE_BRANCH = "v4-alpha" |
| | | const QUARTZ_SOURCE_BRANCH = "v4" |
| | | const cwd = process.cwd() |
| | | const cacheDir = path.join(cwd, ".quartz-cache") |
| | | const cacheFile = "./.quartz-cache/transpiled-build.mjs" |