├── .alexignore ├── .alexrc.yml ├── .github ├── codeql │ └── config.yml ├── dependabot.yml └── workflows │ ├── ci.yml │ ├── codeql-analysis.yml │ ├── docs.yml │ ├── lint-pr-title.yml │ ├── release.yml │ └── simple.yml ├── .gitignore ├── .husky └── commit-msg ├── .npmrc ├── .prettierignore ├── .releaserc.yml ├── .vscode ├── extensions.json └── settings.json ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── MAINTAINERS.md ├── README.md ├── __tests__ ├── __fixtures__ │ ├── changelog │ │ ├── complex-frontmatter │ │ │ ├── basic.md │ │ │ └── complex.md │ │ ├── existing-docs │ │ │ ├── not-a-markdown-file │ │ │ ├── simple-doc.md │ │ │ └── subdir │ │ │ │ └── another-doc.md │ │ ├── failure-docs │ │ │ ├── doc-sans-attributes.md │ │ │ └── new-doc.md │ │ ├── legacy-docs │ │ │ ├── autofixable.md │ │ │ └── unfixable.md │ │ ├── mixed-docs │ │ │ ├── doc-sans-attributes.md │ │ │ ├── invalid-attributes.md │ │ │ ├── legacy-flag.md │ │ │ ├── new-doc-slug.mdx │ │ │ ├── not-a-markdown-file │ │ │ └── simple-doc.md │ │ ├── new-docs │ │ │ └── new-doc.md │ │ └── slug-docs │ │ │ └── new-doc-slug.md │ ├── changelogs │ │ ├── existing-docs │ │ │ ├── not-a-markdown-file │ │ │ ├── simple-doc.md │ │ │ └── subdir │ │ │ │ └── another-doc.md │ │ ├── failure-docs │ │ │ ├── doc-sans-attributes.md │ │ │ └── new-doc.md │ │ ├── new-docs │ │ │ └── new-doc.md │ │ └── slug-docs │ │ │ └── new-doc-slug.md │ ├── circular-ref-oas │ │ ├── circular-reference-ref-only-title.json │ │ ├── circular-reference-ref-only-title.resolved.json │ │ ├── circular-reference-ref-only.json │ │ ├── circular-reference-ref-only.resolved.json │ │ ├── circular-references.json │ │ ├── circular-references.resolved.json │ │ ├── combined-cases.json │ │ ├── combined-cases.resolved.json │ │ ├── recursive-reference.json │ │ ├── recursive-reference.resolved.json │ │ ├── unresolvable-circular-references.json │ │ └── unresolvable-circular-references.resolved.json │ ├── custompages │ │ ├── complex-frontmatter │ │ │ ├── basic.md │ │ │ └── complex.md │ │ ├── existing-docs │ │ │ ├── not-a-markdown-file │ │ │ ├── simple-doc.md │ │ │ └── subdir │ │ │ │ ├── another-doc.md │ │ │ │ └── html-file.html │ │ ├── mixed-docs │ │ │ ├── doc-sans-attributes.md │ │ │ ├── invalid-attributes.md │ │ │ ├── legacy-page.md │ │ │ ├── new-doc-slug.mdx │ │ │ ├── not-a-markdown-file │ │ │ └── simple-doc.md │ │ ├── new-docs │ │ │ └── new-doc.md │ │ └── slug-docs │ │ │ └── new-doc-slug.md │ ├── docs │ │ ├── complex-frontmatter │ │ │ ├── basic.md │ │ │ └── link.md │ │ ├── existing-docs │ │ │ ├── not-a-markdown-file │ │ │ ├── simple-doc.md │ │ │ └── subdir │ │ │ │ └── another-doc.md │ │ ├── mixed-docs │ │ │ ├── doc-sans-attributes.md │ │ │ ├── invalid-attributes.md │ │ │ ├── legacy-category.md │ │ │ ├── new-doc-slug.mdx │ │ │ ├── not-a-markdown-file │ │ │ └── simple-doc.md │ │ ├── multiple-docs │ │ │ ├── child.md │ │ │ ├── friend.md │ │ │ ├── grandparent.md │ │ │ └── parent.md │ │ ├── new-docs │ │ │ └── new-doc.md │ │ └── slug-docs │ │ │ └── new-doc-slug.md │ ├── invalid-json │ │ └── yikes.json │ ├── invalid-oas-3.1.json │ ├── invalid-oas.json │ ├── invalid-ref-oas │ │ ├── external-components.json │ │ └── petstore.json │ ├── invalid-swagger.json │ ├── nested-gitignored-oas │ │ └── nest │ │ │ ├── .gitignore │ │ │ └── petstore.json │ ├── petstore-simple-weird-version.json │ ├── postman │ │ ├── petstore.collection.json │ │ └── petstore.collection.yaml │ ├── ref-oas │ │ ├── external-components.json │ │ └── petstore.json │ ├── reference │ │ └── existing-docs │ │ │ ├── not-a-markdown-file │ │ │ ├── simple-doc.md │ │ │ └── subdir │ │ │ └── another-doc.md │ ├── relative-ref-oas │ │ ├── components │ │ │ └── external-components.json │ │ └── petstore.json │ ├── swagger-with-invalid-extensions.json │ └── very-invalid-oas.json ├── bin.test.ts ├── commands │ ├── __snapshots__ │ │ ├── login.test.ts.snap │ │ ├── logout.test.ts.snap │ │ └── whoami.test.ts.snap │ ├── changelog │ │ ├── __snapshots__ │ │ │ └── upload.test.ts.snap │ │ └── upload.test.ts │ ├── changelogs │ │ ├── index.test.ts │ │ └── single.test.ts │ ├── custompages │ │ ├── __snapshots__ │ │ │ └── upload.test.ts.snap │ │ └── upload.test.ts │ ├── docs │ │ ├── __snapshots__ │ │ │ └── migrate.test.ts.snap │ │ └── migrate.test.ts │ ├── login.test.ts │ ├── logout.test.ts │ ├── openapi │ │ ├── __snapshots__ │ │ │ ├── convert.test.ts.snap │ │ │ ├── inspect.test.ts.snap │ │ │ ├── reduce.test.ts.snap │ │ │ ├── resolve.test.ts.snap │ │ │ ├── upload.test.ts.snap │ │ │ └── validate.test.ts.snap │ │ ├── convert.test.ts │ │ ├── inspect.test.ts │ │ ├── reduce.test.ts │ │ ├── resolve.test.ts │ │ ├── upload.test.ts │ │ └── validate.test.ts │ ├── pages │ │ ├── __snapshots__ │ │ │ └── upload.test.ts.snap │ │ └── upload.test.ts │ └── whoami.test.ts ├── helpers │ ├── get-api-mock.ts │ ├── git-mock.ts │ ├── github-workflow-schema.json │ ├── global-setup.ts │ ├── hash-file-contents.ts │ ├── oclif.ts │ ├── page.types.ts │ └── vitest.matchers.ts ├── lib │ ├── __snapshots__ │ │ ├── analyzeOas.test.ts.snap │ │ ├── baseCommand.test.ts.snap │ │ ├── createGHA.test.ts.snap │ │ └── frontmatter.test.ts.snap │ ├── analyzeOas.test.ts │ ├── apiError.test.ts │ ├── baseCommand.test.ts │ ├── createGHA.test.ts │ ├── fetch.test.ts │ ├── frontmatter.test.ts │ ├── getPkgVersion.test.ts │ ├── hooks.test.ts │ └── validatePromptInput.test.ts └── tsconfig.json ├── action.yml ├── bin ├── dev.cmd ├── dev.js ├── json-schema-store.js ├── run.cmd ├── run.js ├── set-major-version-tag.js ├── set-version-output.js └── write-gha-pjson.js ├── biome.jsonc ├── dist-gha ├── commands.js └── run.cjs ├── documentation ├── commands │ ├── autocomplete.md │ ├── changelog.md │ ├── custompages.md │ ├── docs.md │ ├── help.md │ ├── login.md │ ├── logout.md │ ├── openapi.md │ ├── plugins.md │ ├── reference.md │ └── whoami.md ├── migration-guide.md └── synced │ ├── github-actions-docs-example.mdx │ ├── github-actions-openapi-example.mdx │ ├── legacy │ ├── github-actions-docs-example.mdx │ ├── github-actions-openapi-example.mdx │ ├── legacy-github-action.mdx │ └── rdme.mdx │ └── rdme.mdx ├── knip.ts ├── package.json ├── packages └── create │ ├── bin │ └── create.sh │ ├── package-lock.json │ └── package.json ├── rollup.config.js ├── src ├── commands │ ├── changelog │ │ └── upload.ts │ ├── changelogs.ts │ ├── custompages │ │ └── upload.ts │ ├── docs │ │ ├── migrate.ts │ │ └── upload.ts │ ├── login.ts │ ├── logout.ts │ ├── openapi │ │ ├── convert.ts │ │ ├── inspect.ts │ │ ├── reduce.ts │ │ ├── resolve.ts │ │ ├── upload.ts │ │ └── validate.ts │ ├── rage.ts │ ├── reference │ │ └── upload.ts │ └── whoami.ts ├── index.ts ├── lib │ ├── analyzeOas.ts │ ├── apiError.ts │ ├── baseCommand.ts │ ├── config.ts │ ├── configstore.ts │ ├── createGHA │ │ ├── baseFile.ts │ │ └── index.ts │ ├── flags.ts │ ├── frontmatter.ts │ ├── getCurrentConfig.ts │ ├── getPkg.ts │ ├── git.ts │ ├── help.ts │ ├── hooks │ │ ├── createGHA.ts │ │ ├── exported.ts │ │ └── prerun.ts │ ├── isCI.ts │ ├── logger.ts │ ├── loginFlow.ts │ ├── pageCommandProperties.ts │ ├── prepareOas.ts │ ├── promptWrapper.ts │ ├── readPage.ts │ ├── readdirRecursive.ts │ ├── readmeAPIFetch.ts │ ├── softError.ts │ ├── syncDocsPath.legacy.ts │ ├── syncPagePath.ts │ ├── types │ │ ├── index.ts │ │ └── openapiDoc.ts │ ├── unzip.ts │ ├── validateFrontmatter.ts │ └── validatePromptInput.ts ├── types.ts └── utils.ts ├── tsconfig.json └── vitest.config.ts /.alexignore: -------------------------------------------------------------------------------- 1 | CHANGELOG.md 2 | -------------------------------------------------------------------------------- /.alexrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/.alexrc.yml -------------------------------------------------------------------------------- /.github/codeql/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/.github/codeql/config.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/lint-pr-title.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/.github/workflows/lint-pr-title.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/simple.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/.github/workflows/simple.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | npx commitlint --edit $1 3 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | lockfile-version=3 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/.prettierignore -------------------------------------------------------------------------------- /.releaserc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/.releaserc.yml -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/LICENSE -------------------------------------------------------------------------------- /MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/MAINTAINERS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/__fixtures__/changelog/complex-frontmatter/basic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/__fixtures__/changelog/complex-frontmatter/basic.md -------------------------------------------------------------------------------- /__tests__/__fixtures__/changelog/complex-frontmatter/complex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/__fixtures__/changelog/complex-frontmatter/complex.md -------------------------------------------------------------------------------- /__tests__/__fixtures__/changelog/existing-docs/not-a-markdown-file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /__tests__/__fixtures__/changelog/existing-docs/simple-doc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/__fixtures__/changelog/existing-docs/simple-doc.md -------------------------------------------------------------------------------- /__tests__/__fixtures__/changelog/existing-docs/subdir/another-doc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/__fixtures__/changelog/existing-docs/subdir/another-doc.md -------------------------------------------------------------------------------- /__tests__/__fixtures__/changelog/failure-docs/doc-sans-attributes.md: -------------------------------------------------------------------------------- 1 | Body 2 | -------------------------------------------------------------------------------- /__tests__/__fixtures__/changelog/failure-docs/new-doc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/__fixtures__/changelog/failure-docs/new-doc.md -------------------------------------------------------------------------------- /__tests__/__fixtures__/changelog/legacy-docs/autofixable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/__fixtures__/changelog/legacy-docs/autofixable.md -------------------------------------------------------------------------------- /__tests__/__fixtures__/changelog/legacy-docs/unfixable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/__fixtures__/changelog/legacy-docs/unfixable.md -------------------------------------------------------------------------------- /__tests__/__fixtures__/changelog/mixed-docs/doc-sans-attributes.md: -------------------------------------------------------------------------------- 1 | Body 2 | -------------------------------------------------------------------------------- /__tests__/__fixtures__/changelog/mixed-docs/invalid-attributes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/__fixtures__/changelog/mixed-docs/invalid-attributes.md -------------------------------------------------------------------------------- /__tests__/__fixtures__/changelog/mixed-docs/legacy-flag.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/__fixtures__/changelog/mixed-docs/legacy-flag.md -------------------------------------------------------------------------------- /__tests__/__fixtures__/changelog/mixed-docs/new-doc-slug.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/__fixtures__/changelog/mixed-docs/new-doc-slug.mdx -------------------------------------------------------------------------------- /__tests__/__fixtures__/changelog/mixed-docs/not-a-markdown-file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /__tests__/__fixtures__/changelog/mixed-docs/simple-doc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/__fixtures__/changelog/mixed-docs/simple-doc.md -------------------------------------------------------------------------------- /__tests__/__fixtures__/changelog/new-docs/new-doc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/__fixtures__/changelog/new-docs/new-doc.md -------------------------------------------------------------------------------- /__tests__/__fixtures__/changelog/slug-docs/new-doc-slug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/__fixtures__/changelog/slug-docs/new-doc-slug.md -------------------------------------------------------------------------------- /__tests__/__fixtures__/changelogs/existing-docs/not-a-markdown-file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /__tests__/__fixtures__/changelogs/existing-docs/simple-doc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/__fixtures__/changelogs/existing-docs/simple-doc.md -------------------------------------------------------------------------------- /__tests__/__fixtures__/changelogs/existing-docs/subdir/another-doc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/__fixtures__/changelogs/existing-docs/subdir/another-doc.md -------------------------------------------------------------------------------- /__tests__/__fixtures__/changelogs/failure-docs/doc-sans-attributes.md: -------------------------------------------------------------------------------- 1 | Body 2 | -------------------------------------------------------------------------------- /__tests__/__fixtures__/changelogs/failure-docs/new-doc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/__fixtures__/changelogs/failure-docs/new-doc.md -------------------------------------------------------------------------------- /__tests__/__fixtures__/changelogs/new-docs/new-doc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/__fixtures__/changelogs/new-docs/new-doc.md -------------------------------------------------------------------------------- /__tests__/__fixtures__/changelogs/slug-docs/new-doc-slug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/__fixtures__/changelogs/slug-docs/new-doc-slug.md -------------------------------------------------------------------------------- /__tests__/__fixtures__/circular-ref-oas/circular-reference-ref-only-title.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/__fixtures__/circular-ref-oas/circular-reference-ref-only-title.json -------------------------------------------------------------------------------- /__tests__/__fixtures__/circular-ref-oas/circular-reference-ref-only-title.resolved.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/__fixtures__/circular-ref-oas/circular-reference-ref-only-title.resolved.json -------------------------------------------------------------------------------- /__tests__/__fixtures__/circular-ref-oas/circular-reference-ref-only.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/__fixtures__/circular-ref-oas/circular-reference-ref-only.json -------------------------------------------------------------------------------- /__tests__/__fixtures__/circular-ref-oas/circular-reference-ref-only.resolved.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/__fixtures__/circular-ref-oas/circular-reference-ref-only.resolved.json -------------------------------------------------------------------------------- /__tests__/__fixtures__/circular-ref-oas/circular-references.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/__fixtures__/circular-ref-oas/circular-references.json -------------------------------------------------------------------------------- /__tests__/__fixtures__/circular-ref-oas/circular-references.resolved.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/__fixtures__/circular-ref-oas/circular-references.resolved.json -------------------------------------------------------------------------------- /__tests__/__fixtures__/circular-ref-oas/combined-cases.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/__fixtures__/circular-ref-oas/combined-cases.json -------------------------------------------------------------------------------- /__tests__/__fixtures__/circular-ref-oas/combined-cases.resolved.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/__fixtures__/circular-ref-oas/combined-cases.resolved.json -------------------------------------------------------------------------------- /__tests__/__fixtures__/circular-ref-oas/recursive-reference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/__fixtures__/circular-ref-oas/recursive-reference.json -------------------------------------------------------------------------------- /__tests__/__fixtures__/circular-ref-oas/recursive-reference.resolved.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/__fixtures__/circular-ref-oas/recursive-reference.resolved.json -------------------------------------------------------------------------------- /__tests__/__fixtures__/circular-ref-oas/unresolvable-circular-references.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/__fixtures__/circular-ref-oas/unresolvable-circular-references.json -------------------------------------------------------------------------------- /__tests__/__fixtures__/circular-ref-oas/unresolvable-circular-references.resolved.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/__fixtures__/circular-ref-oas/unresolvable-circular-references.resolved.json -------------------------------------------------------------------------------- /__tests__/__fixtures__/custompages/complex-frontmatter/basic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/__fixtures__/custompages/complex-frontmatter/basic.md -------------------------------------------------------------------------------- /__tests__/__fixtures__/custompages/complex-frontmatter/complex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/__fixtures__/custompages/complex-frontmatter/complex.md -------------------------------------------------------------------------------- /__tests__/__fixtures__/custompages/existing-docs/not-a-markdown-file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /__tests__/__fixtures__/custompages/existing-docs/simple-doc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/__fixtures__/custompages/existing-docs/simple-doc.md -------------------------------------------------------------------------------- /__tests__/__fixtures__/custompages/existing-docs/subdir/another-doc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/__fixtures__/custompages/existing-docs/subdir/another-doc.md -------------------------------------------------------------------------------- /__tests__/__fixtures__/custompages/existing-docs/subdir/html-file.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/__fixtures__/custompages/existing-docs/subdir/html-file.html -------------------------------------------------------------------------------- /__tests__/__fixtures__/custompages/mixed-docs/doc-sans-attributes.md: -------------------------------------------------------------------------------- 1 | Body 2 | -------------------------------------------------------------------------------- /__tests__/__fixtures__/custompages/mixed-docs/invalid-attributes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/__fixtures__/custompages/mixed-docs/invalid-attributes.md -------------------------------------------------------------------------------- /__tests__/__fixtures__/custompages/mixed-docs/legacy-page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/__fixtures__/custompages/mixed-docs/legacy-page.md -------------------------------------------------------------------------------- /__tests__/__fixtures__/custompages/mixed-docs/new-doc-slug.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/__fixtures__/custompages/mixed-docs/new-doc-slug.mdx -------------------------------------------------------------------------------- /__tests__/__fixtures__/custompages/mixed-docs/not-a-markdown-file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /__tests__/__fixtures__/custompages/mixed-docs/simple-doc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/__fixtures__/custompages/mixed-docs/simple-doc.md -------------------------------------------------------------------------------- /__tests__/__fixtures__/custompages/new-docs/new-doc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/__fixtures__/custompages/new-docs/new-doc.md -------------------------------------------------------------------------------- /__tests__/__fixtures__/custompages/slug-docs/new-doc-slug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/__fixtures__/custompages/slug-docs/new-doc-slug.md -------------------------------------------------------------------------------- /__tests__/__fixtures__/docs/complex-frontmatter/basic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/__fixtures__/docs/complex-frontmatter/basic.md -------------------------------------------------------------------------------- /__tests__/__fixtures__/docs/complex-frontmatter/link.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/__fixtures__/docs/complex-frontmatter/link.md -------------------------------------------------------------------------------- /__tests__/__fixtures__/docs/existing-docs/not-a-markdown-file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /__tests__/__fixtures__/docs/existing-docs/simple-doc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/__fixtures__/docs/existing-docs/simple-doc.md -------------------------------------------------------------------------------- /__tests__/__fixtures__/docs/existing-docs/subdir/another-doc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/__fixtures__/docs/existing-docs/subdir/another-doc.md -------------------------------------------------------------------------------- /__tests__/__fixtures__/docs/mixed-docs/doc-sans-attributes.md: -------------------------------------------------------------------------------- 1 | Body 2 | -------------------------------------------------------------------------------- /__tests__/__fixtures__/docs/mixed-docs/invalid-attributes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/__fixtures__/docs/mixed-docs/invalid-attributes.md -------------------------------------------------------------------------------- /__tests__/__fixtures__/docs/mixed-docs/legacy-category.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/__fixtures__/docs/mixed-docs/legacy-category.md -------------------------------------------------------------------------------- /__tests__/__fixtures__/docs/mixed-docs/new-doc-slug.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/__fixtures__/docs/mixed-docs/new-doc-slug.mdx -------------------------------------------------------------------------------- /__tests__/__fixtures__/docs/mixed-docs/not-a-markdown-file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /__tests__/__fixtures__/docs/mixed-docs/simple-doc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/__fixtures__/docs/mixed-docs/simple-doc.md -------------------------------------------------------------------------------- /__tests__/__fixtures__/docs/multiple-docs/child.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/__fixtures__/docs/multiple-docs/child.md -------------------------------------------------------------------------------- /__tests__/__fixtures__/docs/multiple-docs/friend.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Friend 3 | --- 4 | 5 | Body 6 | -------------------------------------------------------------------------------- /__tests__/__fixtures__/docs/multiple-docs/grandparent.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Grandparent 3 | --- 4 | 5 | Body 6 | -------------------------------------------------------------------------------- /__tests__/__fixtures__/docs/multiple-docs/parent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/__fixtures__/docs/multiple-docs/parent.md -------------------------------------------------------------------------------- /__tests__/__fixtures__/docs/new-docs/new-doc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/__fixtures__/docs/new-docs/new-doc.md -------------------------------------------------------------------------------- /__tests__/__fixtures__/docs/slug-docs/new-doc-slug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/__fixtures__/docs/slug-docs/new-doc-slug.md -------------------------------------------------------------------------------- /__tests__/__fixtures__/invalid-json/yikes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/__fixtures__/invalid-json/yikes.json -------------------------------------------------------------------------------- /__tests__/__fixtures__/invalid-oas-3.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/__fixtures__/invalid-oas-3.1.json -------------------------------------------------------------------------------- /__tests__/__fixtures__/invalid-oas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/__fixtures__/invalid-oas.json -------------------------------------------------------------------------------- /__tests__/__fixtures__/invalid-ref-oas/external-components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/__fixtures__/invalid-ref-oas/external-components.json -------------------------------------------------------------------------------- /__tests__/__fixtures__/invalid-ref-oas/petstore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/__fixtures__/invalid-ref-oas/petstore.json -------------------------------------------------------------------------------- /__tests__/__fixtures__/invalid-swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/__fixtures__/invalid-swagger.json -------------------------------------------------------------------------------- /__tests__/__fixtures__/nested-gitignored-oas/nest/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/__fixtures__/nested-gitignored-oas/nest/.gitignore -------------------------------------------------------------------------------- /__tests__/__fixtures__/nested-gitignored-oas/nest/petstore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/__fixtures__/nested-gitignored-oas/nest/petstore.json -------------------------------------------------------------------------------- /__tests__/__fixtures__/petstore-simple-weird-version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/__fixtures__/petstore-simple-weird-version.json -------------------------------------------------------------------------------- /__tests__/__fixtures__/postman/petstore.collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/__fixtures__/postman/petstore.collection.json -------------------------------------------------------------------------------- /__tests__/__fixtures__/postman/petstore.collection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/__fixtures__/postman/petstore.collection.yaml -------------------------------------------------------------------------------- /__tests__/__fixtures__/ref-oas/external-components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/__fixtures__/ref-oas/external-components.json -------------------------------------------------------------------------------- /__tests__/__fixtures__/ref-oas/petstore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/__fixtures__/ref-oas/petstore.json -------------------------------------------------------------------------------- /__tests__/__fixtures__/reference/existing-docs/not-a-markdown-file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /__tests__/__fixtures__/reference/existing-docs/simple-doc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/__fixtures__/reference/existing-docs/simple-doc.md -------------------------------------------------------------------------------- /__tests__/__fixtures__/reference/existing-docs/subdir/another-doc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/__fixtures__/reference/existing-docs/subdir/another-doc.md -------------------------------------------------------------------------------- /__tests__/__fixtures__/relative-ref-oas/components/external-components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/__fixtures__/relative-ref-oas/components/external-components.json -------------------------------------------------------------------------------- /__tests__/__fixtures__/relative-ref-oas/petstore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/__fixtures__/relative-ref-oas/petstore.json -------------------------------------------------------------------------------- /__tests__/__fixtures__/swagger-with-invalid-extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/__fixtures__/swagger-with-invalid-extensions.json -------------------------------------------------------------------------------- /__tests__/__fixtures__/very-invalid-oas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/__fixtures__/very-invalid-oas.json -------------------------------------------------------------------------------- /__tests__/bin.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/bin.test.ts -------------------------------------------------------------------------------- /__tests__/commands/__snapshots__/login.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/commands/__snapshots__/login.test.ts.snap -------------------------------------------------------------------------------- /__tests__/commands/__snapshots__/logout.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/commands/__snapshots__/logout.test.ts.snap -------------------------------------------------------------------------------- /__tests__/commands/__snapshots__/whoami.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/commands/__snapshots__/whoami.test.ts.snap -------------------------------------------------------------------------------- /__tests__/commands/changelog/__snapshots__/upload.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/commands/changelog/__snapshots__/upload.test.ts.snap -------------------------------------------------------------------------------- /__tests__/commands/changelog/upload.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/commands/changelog/upload.test.ts -------------------------------------------------------------------------------- /__tests__/commands/changelogs/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/commands/changelogs/index.test.ts -------------------------------------------------------------------------------- /__tests__/commands/changelogs/single.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/commands/changelogs/single.test.ts -------------------------------------------------------------------------------- /__tests__/commands/custompages/__snapshots__/upload.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/commands/custompages/__snapshots__/upload.test.ts.snap -------------------------------------------------------------------------------- /__tests__/commands/custompages/upload.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/commands/custompages/upload.test.ts -------------------------------------------------------------------------------- /__tests__/commands/docs/__snapshots__/migrate.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/commands/docs/__snapshots__/migrate.test.ts.snap -------------------------------------------------------------------------------- /__tests__/commands/docs/migrate.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/commands/docs/migrate.test.ts -------------------------------------------------------------------------------- /__tests__/commands/login.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/commands/login.test.ts -------------------------------------------------------------------------------- /__tests__/commands/logout.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/commands/logout.test.ts -------------------------------------------------------------------------------- /__tests__/commands/openapi/__snapshots__/convert.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/commands/openapi/__snapshots__/convert.test.ts.snap -------------------------------------------------------------------------------- /__tests__/commands/openapi/__snapshots__/inspect.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/commands/openapi/__snapshots__/inspect.test.ts.snap -------------------------------------------------------------------------------- /__tests__/commands/openapi/__snapshots__/reduce.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/commands/openapi/__snapshots__/reduce.test.ts.snap -------------------------------------------------------------------------------- /__tests__/commands/openapi/__snapshots__/resolve.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/commands/openapi/__snapshots__/resolve.test.ts.snap -------------------------------------------------------------------------------- /__tests__/commands/openapi/__snapshots__/upload.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/commands/openapi/__snapshots__/upload.test.ts.snap -------------------------------------------------------------------------------- /__tests__/commands/openapi/__snapshots__/validate.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/commands/openapi/__snapshots__/validate.test.ts.snap -------------------------------------------------------------------------------- /__tests__/commands/openapi/convert.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/commands/openapi/convert.test.ts -------------------------------------------------------------------------------- /__tests__/commands/openapi/inspect.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/commands/openapi/inspect.test.ts -------------------------------------------------------------------------------- /__tests__/commands/openapi/reduce.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/commands/openapi/reduce.test.ts -------------------------------------------------------------------------------- /__tests__/commands/openapi/resolve.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/commands/openapi/resolve.test.ts -------------------------------------------------------------------------------- /__tests__/commands/openapi/upload.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/commands/openapi/upload.test.ts -------------------------------------------------------------------------------- /__tests__/commands/openapi/validate.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/commands/openapi/validate.test.ts -------------------------------------------------------------------------------- /__tests__/commands/pages/__snapshots__/upload.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/commands/pages/__snapshots__/upload.test.ts.snap -------------------------------------------------------------------------------- /__tests__/commands/pages/upload.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/commands/pages/upload.test.ts -------------------------------------------------------------------------------- /__tests__/commands/whoami.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/commands/whoami.test.ts -------------------------------------------------------------------------------- /__tests__/helpers/get-api-mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/helpers/get-api-mock.ts -------------------------------------------------------------------------------- /__tests__/helpers/git-mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/helpers/git-mock.ts -------------------------------------------------------------------------------- /__tests__/helpers/github-workflow-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/helpers/github-workflow-schema.json -------------------------------------------------------------------------------- /__tests__/helpers/global-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/helpers/global-setup.ts -------------------------------------------------------------------------------- /__tests__/helpers/hash-file-contents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/helpers/hash-file-contents.ts -------------------------------------------------------------------------------- /__tests__/helpers/oclif.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/helpers/oclif.ts -------------------------------------------------------------------------------- /__tests__/helpers/page.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/helpers/page.types.ts -------------------------------------------------------------------------------- /__tests__/helpers/vitest.matchers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/helpers/vitest.matchers.ts -------------------------------------------------------------------------------- /__tests__/lib/__snapshots__/analyzeOas.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/lib/__snapshots__/analyzeOas.test.ts.snap -------------------------------------------------------------------------------- /__tests__/lib/__snapshots__/baseCommand.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/lib/__snapshots__/baseCommand.test.ts.snap -------------------------------------------------------------------------------- /__tests__/lib/__snapshots__/createGHA.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/lib/__snapshots__/createGHA.test.ts.snap -------------------------------------------------------------------------------- /__tests__/lib/__snapshots__/frontmatter.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/lib/__snapshots__/frontmatter.test.ts.snap -------------------------------------------------------------------------------- /__tests__/lib/analyzeOas.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/lib/analyzeOas.test.ts -------------------------------------------------------------------------------- /__tests__/lib/apiError.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/lib/apiError.test.ts -------------------------------------------------------------------------------- /__tests__/lib/baseCommand.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/lib/baseCommand.test.ts -------------------------------------------------------------------------------- /__tests__/lib/createGHA.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/lib/createGHA.test.ts -------------------------------------------------------------------------------- /__tests__/lib/fetch.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/lib/fetch.test.ts -------------------------------------------------------------------------------- /__tests__/lib/frontmatter.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/lib/frontmatter.test.ts -------------------------------------------------------------------------------- /__tests__/lib/getPkgVersion.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/lib/getPkgVersion.test.ts -------------------------------------------------------------------------------- /__tests__/lib/hooks.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/lib/hooks.test.ts -------------------------------------------------------------------------------- /__tests__/lib/validatePromptInput.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/lib/validatePromptInput.test.ts -------------------------------------------------------------------------------- /__tests__/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/__tests__/tsconfig.json -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/action.yml -------------------------------------------------------------------------------- /bin/dev.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | node "%~dp0\dev" %* 4 | -------------------------------------------------------------------------------- /bin/dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/bin/dev.js -------------------------------------------------------------------------------- /bin/json-schema-store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/bin/json-schema-store.js -------------------------------------------------------------------------------- /bin/run.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | node "%~dp0\run" %* 4 | -------------------------------------------------------------------------------- /bin/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/bin/run.js -------------------------------------------------------------------------------- /bin/set-major-version-tag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/bin/set-major-version-tag.js -------------------------------------------------------------------------------- /bin/set-version-output.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/bin/set-version-output.js -------------------------------------------------------------------------------- /bin/write-gha-pjson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/bin/write-gha-pjson.js -------------------------------------------------------------------------------- /biome.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/biome.jsonc -------------------------------------------------------------------------------- /dist-gha/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/dist-gha/commands.js -------------------------------------------------------------------------------- /dist-gha/run.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/dist-gha/run.cjs -------------------------------------------------------------------------------- /documentation/commands/autocomplete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/documentation/commands/autocomplete.md -------------------------------------------------------------------------------- /documentation/commands/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/documentation/commands/changelog.md -------------------------------------------------------------------------------- /documentation/commands/custompages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/documentation/commands/custompages.md -------------------------------------------------------------------------------- /documentation/commands/docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/documentation/commands/docs.md -------------------------------------------------------------------------------- /documentation/commands/help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/documentation/commands/help.md -------------------------------------------------------------------------------- /documentation/commands/login.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/documentation/commands/login.md -------------------------------------------------------------------------------- /documentation/commands/logout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/documentation/commands/logout.md -------------------------------------------------------------------------------- /documentation/commands/openapi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/documentation/commands/openapi.md -------------------------------------------------------------------------------- /documentation/commands/plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/documentation/commands/plugins.md -------------------------------------------------------------------------------- /documentation/commands/reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/documentation/commands/reference.md -------------------------------------------------------------------------------- /documentation/commands/whoami.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/documentation/commands/whoami.md -------------------------------------------------------------------------------- /documentation/migration-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/documentation/migration-guide.md -------------------------------------------------------------------------------- /documentation/synced/github-actions-docs-example.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/documentation/synced/github-actions-docs-example.mdx -------------------------------------------------------------------------------- /documentation/synced/github-actions-openapi-example.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/documentation/synced/github-actions-openapi-example.mdx -------------------------------------------------------------------------------- /documentation/synced/legacy/github-actions-docs-example.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/documentation/synced/legacy/github-actions-docs-example.mdx -------------------------------------------------------------------------------- /documentation/synced/legacy/github-actions-openapi-example.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/documentation/synced/legacy/github-actions-openapi-example.mdx -------------------------------------------------------------------------------- /documentation/synced/legacy/legacy-github-action.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/documentation/synced/legacy/legacy-github-action.mdx -------------------------------------------------------------------------------- /documentation/synced/legacy/rdme.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/documentation/synced/legacy/rdme.mdx -------------------------------------------------------------------------------- /documentation/synced/rdme.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/documentation/synced/rdme.mdx -------------------------------------------------------------------------------- /knip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/knip.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/package.json -------------------------------------------------------------------------------- /packages/create/bin/create.sh: -------------------------------------------------------------------------------- 1 | npx rdme@next openapi --github 2 | -------------------------------------------------------------------------------- /packages/create/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/packages/create/package-lock.json -------------------------------------------------------------------------------- /packages/create/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/packages/create/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/commands/changelog/upload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/src/commands/changelog/upload.ts -------------------------------------------------------------------------------- /src/commands/changelogs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/src/commands/changelogs.ts -------------------------------------------------------------------------------- /src/commands/custompages/upload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/src/commands/custompages/upload.ts -------------------------------------------------------------------------------- /src/commands/docs/migrate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/src/commands/docs/migrate.ts -------------------------------------------------------------------------------- /src/commands/docs/upload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/src/commands/docs/upload.ts -------------------------------------------------------------------------------- /src/commands/login.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/src/commands/login.ts -------------------------------------------------------------------------------- /src/commands/logout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/src/commands/logout.ts -------------------------------------------------------------------------------- /src/commands/openapi/convert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/src/commands/openapi/convert.ts -------------------------------------------------------------------------------- /src/commands/openapi/inspect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/src/commands/openapi/inspect.ts -------------------------------------------------------------------------------- /src/commands/openapi/reduce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/src/commands/openapi/reduce.ts -------------------------------------------------------------------------------- /src/commands/openapi/resolve.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/src/commands/openapi/resolve.ts -------------------------------------------------------------------------------- /src/commands/openapi/upload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/src/commands/openapi/upload.ts -------------------------------------------------------------------------------- /src/commands/openapi/validate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/src/commands/openapi/validate.ts -------------------------------------------------------------------------------- /src/commands/rage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/src/commands/rage.ts -------------------------------------------------------------------------------- /src/commands/reference/upload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/src/commands/reference/upload.ts -------------------------------------------------------------------------------- /src/commands/whoami.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/src/commands/whoami.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/lib/analyzeOas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/src/lib/analyzeOas.ts -------------------------------------------------------------------------------- /src/lib/apiError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/src/lib/apiError.ts -------------------------------------------------------------------------------- /src/lib/baseCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/src/lib/baseCommand.ts -------------------------------------------------------------------------------- /src/lib/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/src/lib/config.ts -------------------------------------------------------------------------------- /src/lib/configstore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/src/lib/configstore.ts -------------------------------------------------------------------------------- /src/lib/createGHA/baseFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/src/lib/createGHA/baseFile.ts -------------------------------------------------------------------------------- /src/lib/createGHA/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/src/lib/createGHA/index.ts -------------------------------------------------------------------------------- /src/lib/flags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/src/lib/flags.ts -------------------------------------------------------------------------------- /src/lib/frontmatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/src/lib/frontmatter.ts -------------------------------------------------------------------------------- /src/lib/getCurrentConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/src/lib/getCurrentConfig.ts -------------------------------------------------------------------------------- /src/lib/getPkg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/src/lib/getPkg.ts -------------------------------------------------------------------------------- /src/lib/git.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/src/lib/git.ts -------------------------------------------------------------------------------- /src/lib/help.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/src/lib/help.ts -------------------------------------------------------------------------------- /src/lib/hooks/createGHA.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/src/lib/hooks/createGHA.ts -------------------------------------------------------------------------------- /src/lib/hooks/exported.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/src/lib/hooks/exported.ts -------------------------------------------------------------------------------- /src/lib/hooks/prerun.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/src/lib/hooks/prerun.ts -------------------------------------------------------------------------------- /src/lib/isCI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/src/lib/isCI.ts -------------------------------------------------------------------------------- /src/lib/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/src/lib/logger.ts -------------------------------------------------------------------------------- /src/lib/loginFlow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/src/lib/loginFlow.ts -------------------------------------------------------------------------------- /src/lib/pageCommandProperties.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/src/lib/pageCommandProperties.ts -------------------------------------------------------------------------------- /src/lib/prepareOas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/src/lib/prepareOas.ts -------------------------------------------------------------------------------- /src/lib/promptWrapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/src/lib/promptWrapper.ts -------------------------------------------------------------------------------- /src/lib/readPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/src/lib/readPage.ts -------------------------------------------------------------------------------- /src/lib/readdirRecursive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/src/lib/readdirRecursive.ts -------------------------------------------------------------------------------- /src/lib/readmeAPIFetch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/src/lib/readmeAPIFetch.ts -------------------------------------------------------------------------------- /src/lib/softError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/src/lib/softError.ts -------------------------------------------------------------------------------- /src/lib/syncDocsPath.legacy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/src/lib/syncDocsPath.legacy.ts -------------------------------------------------------------------------------- /src/lib/syncPagePath.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/src/lib/syncPagePath.ts -------------------------------------------------------------------------------- /src/lib/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/src/lib/types/index.ts -------------------------------------------------------------------------------- /src/lib/types/openapiDoc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/src/lib/types/openapiDoc.ts -------------------------------------------------------------------------------- /src/lib/unzip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/src/lib/unzip.ts -------------------------------------------------------------------------------- /src/lib/validateFrontmatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/src/lib/validateFrontmatter.ts -------------------------------------------------------------------------------- /src/lib/validatePromptInput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/src/lib/validatePromptInput.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/src/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readmeio/rdme/HEAD/vitest.config.ts --------------------------------------------------------------------------------