├── .github └── workflows │ └── follow.yml ├── .gitignore ├── .markdownlint.json ├── .prettierignore ├── .prettierrc ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── dist ├── .gitkeep ├── .prettierignore └── README.md ├── package.json ├── schema ├── bundle.json └── individual.json ├── src ├── fetch │ ├── github.ts │ ├── meeting-notes.ts │ ├── parse-table.ts │ ├── proposal-markdown.ts │ ├── proposals.ts │ └── repos.ts ├── index.ts ├── schema.ts └── types │ ├── bundle.d.ts │ └── individual.d.ts └── tsconfig.json /.github/workflows/follow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/dataset/HEAD/.github/workflows/follow.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/dataset/HEAD/.gitignore -------------------------------------------------------------------------------- /.markdownlint.json: -------------------------------------------------------------------------------- 1 | { 2 | "no-inline-html": false 3 | } 4 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | /src/types -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/dataset/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/dataset/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/dataset/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/dataset/HEAD/README.md -------------------------------------------------------------------------------- /dist/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/.prettierignore: -------------------------------------------------------------------------------- 1 | *.min.json -------------------------------------------------------------------------------- /dist/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/dataset/HEAD/dist/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/dataset/HEAD/package.json -------------------------------------------------------------------------------- /schema/bundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/dataset/HEAD/schema/bundle.json -------------------------------------------------------------------------------- /schema/individual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/dataset/HEAD/schema/individual.json -------------------------------------------------------------------------------- /src/fetch/github.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/dataset/HEAD/src/fetch/github.ts -------------------------------------------------------------------------------- /src/fetch/meeting-notes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/dataset/HEAD/src/fetch/meeting-notes.ts -------------------------------------------------------------------------------- /src/fetch/parse-table.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/dataset/HEAD/src/fetch/parse-table.ts -------------------------------------------------------------------------------- /src/fetch/proposal-markdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/dataset/HEAD/src/fetch/proposal-markdown.ts -------------------------------------------------------------------------------- /src/fetch/proposals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/dataset/HEAD/src/fetch/proposals.ts -------------------------------------------------------------------------------- /src/fetch/repos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/dataset/HEAD/src/fetch/repos.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/dataset/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/dataset/HEAD/src/schema.ts -------------------------------------------------------------------------------- /src/types/bundle.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/dataset/HEAD/src/types/bundle.d.ts -------------------------------------------------------------------------------- /src/types/individual.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/dataset/HEAD/src/types/individual.d.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/dataset/HEAD/tsconfig.json --------------------------------------------------------------------------------