From d8cf52489508264df6b39d26fed3c2e6fcfbc7e9 Mon Sep 17 00:00:00 2001 From: TheoryOfNekomata Date: Fri, 4 Aug 2023 16:16:16 +0800 Subject: [PATCH] Add todo Lay out tasks for this project. --- TODO.md | 1 + packages/amanuensis/TODO.md | 3 +++ packages/amanuensis/src/commands/serve.ts | 2 +- 3 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 packages/amanuensis/TODO.md diff --git a/TODO.md b/TODO.md index 7ac0faf..f2ddc88 100644 --- a/TODO.md +++ b/TODO.md @@ -78,3 +78,4 @@ - [ ] Add `aria-*` attributes to all components - [ ] react-refractor, fix rendering on Lynx! - [ ] Limit component props to only those that are relevant +- [ ] Extract `packages/` dir diff --git a/packages/amanuensis/TODO.md b/packages/amanuensis/TODO.md new file mode 100644 index 0000000..eeeee1c --- /dev/null +++ b/packages/amanuensis/TODO.md @@ -0,0 +1,3 @@ +- [ ] Resolve `refresh` command TODOs +- [ ] Add `build` command to create static file of the Next app +- [ ] Replace `serve` with `dev`? (for interactive development, have to figure out how to properly manage changes tho) diff --git a/packages/amanuensis/src/commands/serve.ts b/packages/amanuensis/src/commands/serve.ts index e9593b2..853f195 100644 --- a/packages/amanuensis/src/commands/serve.ts +++ b/packages/amanuensis/src/commands/serve.ts @@ -1,6 +1,6 @@ import { Argv } from 'yargs'; import { resolve } from 'path'; -import {CommandError} from '../utils/error'; +import { CommandError } from '../utils/error'; const DEFAULT_PORT = 3000 as const;