Skip to content

Commit

Permalink
fix docs
Browse files Browse the repository at this point in the history
  • Loading branch information
fubhy committed Dec 27, 2023
1 parent d987daa commit fa3d68d
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 0 deletions.
5 changes: 5 additions & 0 deletions docs/_config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
remote_theme: mikearnaldi/just-the-docs
search_enabled: true
aux_links:
"GitHub":
- "//github.com/effect-ts/effect"
9 changes: 9 additions & 0 deletions docs/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
title: Introduction
permalink: /
nav_order: 1
has_children: false
has_toc: false
---

## Work In Progress
8 changes: 8 additions & 0 deletions scripts/clean.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@ dirs.forEach((pkg) => {
const files = [".tsbuildinfo", "docs", "build", "dist", "coverage"]

files.forEach((file) => {
if (pkg === "." && file === "docs") {
return
}

Fs.rmSync(`${pkg}/${file}`, { recursive: true, force: true }, () => {})
})
})

Glob.sync("docs/*/").forEach((dir) => {
Fs.rmSync(dir, { recursive: true, force: true }, () => {})
})

0 comments on commit fa3d68d

Please sign in to comment.