From 5bfeb1e5912b9010b6d6af50d9e0daa9613f8c47 Mon Sep 17 00:00:00 2001 From: azu Date: Thu, 15 Feb 2024 00:46:36 +0900 Subject: [PATCH] docs: add setup document (#19) --- README.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/README.md b/README.md index 0f6060f..ace16f8 100644 --- a/README.md +++ b/README.md @@ -8,6 +8,28 @@ This project provide TC39 proposal latest status

(Production) +## Development + +Setup: + +```sh +git clone https://github.com/tc39/dataset +cd dataset +# Install dependencies +npm ci +# Clone tc39/proposals and tc39/notes for make dataset +git clone https://github.com/tc39/notes +git clone https://github.com/tc39/proposal +``` + +Update dist files: + +```sh +npm run build +GITHUB_TOKEN=xxx npm run make-dataset # Pass GITHUB_TOKEN for avoid rate limit +npm run make-scheme +``` + ## LICENSE [UNLICENSE](LICENSE)