├── .eslintrc.json ├── .github ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── main.yml ├── .gitignore ├── .prettierrc ├── .vscode └── settings.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── docs.ts ├── docs ├── _config.yml ├── index.md └── modules │ ├── Config.ts.md │ ├── Core.ts.md │ ├── FileSystem.ts.md │ ├── Logger.ts.md │ ├── Markdown.ts.md │ ├── Module.ts.md │ ├── Parser.ts.md │ ├── Production.ts.md │ ├── Spawn.ts.md │ ├── bin.ts.md │ ├── index.md │ └── index.ts.md ├── package.json ├── src ├── Config.ts ├── Core.ts ├── FileSystem.ts ├── Logger.ts ├── Markdown.ts ├── Module.ts ├── Parser.ts ├── Production.ts ├── Spawn.ts ├── bin.ts └── index.ts ├── test ├── Config.ts ├── Logger.ts ├── Markdown.ts ├── Module.ts ├── Parser.ts └── util.ts ├── tsconfig.build.json ├── tsconfig.eslint.json ├── tsconfig.json └── vitest.config.ts /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/docs-ts/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/docs-ts/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/docs-ts/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/docs-ts/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | node_modules 3 | lib 4 | dev 5 | coverage 6 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/docs-ts/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/docs-ts/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/docs-ts/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/docs-ts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/docs-ts/HEAD/README.md -------------------------------------------------------------------------------- /docs.ts: -------------------------------------------------------------------------------- 1 | import './src/bin' 2 | -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/docs-ts/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Home 3 | nav_order: 1 4 | --- 5 | -------------------------------------------------------------------------------- /docs/modules/Config.ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/docs-ts/HEAD/docs/modules/Config.ts.md -------------------------------------------------------------------------------- /docs/modules/Core.ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/docs-ts/HEAD/docs/modules/Core.ts.md -------------------------------------------------------------------------------- /docs/modules/FileSystem.ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/docs-ts/HEAD/docs/modules/FileSystem.ts.md -------------------------------------------------------------------------------- /docs/modules/Logger.ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/docs-ts/HEAD/docs/modules/Logger.ts.md -------------------------------------------------------------------------------- /docs/modules/Markdown.ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/docs-ts/HEAD/docs/modules/Markdown.ts.md -------------------------------------------------------------------------------- /docs/modules/Module.ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/docs-ts/HEAD/docs/modules/Module.ts.md -------------------------------------------------------------------------------- /docs/modules/Parser.ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/docs-ts/HEAD/docs/modules/Parser.ts.md -------------------------------------------------------------------------------- /docs/modules/Production.ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/docs-ts/HEAD/docs/modules/Production.ts.md -------------------------------------------------------------------------------- /docs/modules/Spawn.ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/docs-ts/HEAD/docs/modules/Spawn.ts.md -------------------------------------------------------------------------------- /docs/modules/bin.ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/docs-ts/HEAD/docs/modules/bin.ts.md -------------------------------------------------------------------------------- /docs/modules/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/docs-ts/HEAD/docs/modules/index.md -------------------------------------------------------------------------------- /docs/modules/index.ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/docs-ts/HEAD/docs/modules/index.ts.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/docs-ts/HEAD/package.json -------------------------------------------------------------------------------- /src/Config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/docs-ts/HEAD/src/Config.ts -------------------------------------------------------------------------------- /src/Core.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/docs-ts/HEAD/src/Core.ts -------------------------------------------------------------------------------- /src/FileSystem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/docs-ts/HEAD/src/FileSystem.ts -------------------------------------------------------------------------------- /src/Logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/docs-ts/HEAD/src/Logger.ts -------------------------------------------------------------------------------- /src/Markdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/docs-ts/HEAD/src/Markdown.ts -------------------------------------------------------------------------------- /src/Module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/docs-ts/HEAD/src/Module.ts -------------------------------------------------------------------------------- /src/Parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/docs-ts/HEAD/src/Parser.ts -------------------------------------------------------------------------------- /src/Production.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/docs-ts/HEAD/src/Production.ts -------------------------------------------------------------------------------- /src/Spawn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/docs-ts/HEAD/src/Spawn.ts -------------------------------------------------------------------------------- /src/bin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/docs-ts/HEAD/src/bin.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/docs-ts/HEAD/src/index.ts -------------------------------------------------------------------------------- /test/Config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/docs-ts/HEAD/test/Config.ts -------------------------------------------------------------------------------- /test/Logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/docs-ts/HEAD/test/Logger.ts -------------------------------------------------------------------------------- /test/Markdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/docs-ts/HEAD/test/Markdown.ts -------------------------------------------------------------------------------- /test/Module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/docs-ts/HEAD/test/Module.ts -------------------------------------------------------------------------------- /test/Parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/docs-ts/HEAD/test/Parser.ts -------------------------------------------------------------------------------- /test/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/docs-ts/HEAD/test/util.ts -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/docs-ts/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/docs-ts/HEAD/tsconfig.eslint.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/docs-ts/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcanti/docs-ts/HEAD/vitest.config.ts --------------------------------------------------------------------------------