├── .all-contributorsrc ├── .babelrc ├── .coveralls.yml ├── .editorconfig ├── .eslintrc.js ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .nycrc ├── .prettierrc ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── package.json ├── src ├── common │ ├── alerts.ts │ ├── index.ts │ └── tests │ │ ├── alert.spec.ts │ │ ├── index.spec.ts │ │ ├── mock │ │ ├── alert.mock.ts │ │ └── index.mock.ts │ │ └── spec.ts ├── core │ ├── actions │ │ ├── actionsUtils.ts │ │ ├── checkActions │ │ │ ├── index.ts │ │ │ └── tests │ │ │ │ ├── index.spec.ts │ │ │ │ └── mock │ │ │ │ └── index.mock.ts │ │ ├── createActions │ │ │ ├── index.ts │ │ │ └── tests │ │ │ │ ├── index.spec.ts │ │ │ │ └── mock │ │ │ │ └── index.mock.ts │ │ ├── index.ts │ │ ├── listActions │ │ │ ├── index.ts │ │ │ └── tests │ │ │ │ ├── index.spec.ts │ │ │ │ └── mock │ │ │ │ └── index.mock.ts │ │ ├── removeActions │ │ │ ├── index.ts │ │ │ └── tests │ │ │ │ ├── index.spec.ts │ │ │ │ └── mock │ │ │ │ └── index.mock.ts │ │ └── tests │ │ │ ├── actionUtils.spec.ts │ │ │ └── index.spec.ts │ ├── coreUtils │ │ ├── index.ts │ │ └── tests │ │ │ ├── index.spec.ts │ │ │ └── mock │ │ │ └── index.mock.ts │ ├── questions │ │ ├── askQuestions.ts │ │ ├── setupQuestions │ │ │ ├── createCommand │ │ │ │ ├── createInit.ts │ │ │ │ └── tests │ │ │ │ │ ├── createInit.spec.ts │ │ │ │ │ └── mock │ │ │ │ │ └── createInit.mock.ts │ │ │ ├── index.ts │ │ │ ├── projectQuestions │ │ │ │ ├── author-email.ts │ │ │ │ ├── author-github.ts │ │ │ │ ├── author-name.ts │ │ │ │ ├── author-patreon.ts │ │ │ │ ├── author-twitter.ts │ │ │ │ ├── choose-template.ts │ │ │ │ ├── contributing.ts │ │ │ │ ├── install-command.ts │ │ │ │ ├── license-name.ts │ │ │ │ ├── license-url.ts │ │ │ │ ├── project-description.ts │ │ │ │ ├── project-documentation-url.ts │ │ │ │ ├── project-homepage.ts │ │ │ │ ├── project-name.ts │ │ │ │ ├── project-prerequisites.ts │ │ │ │ ├── project-version.ts │ │ │ │ ├── test-command.ts │ │ │ │ ├── tests │ │ │ │ │ ├── author-email.spec.ts │ │ │ │ │ ├── author-github.spec.ts │ │ │ │ │ ├── author-name.spec.ts │ │ │ │ │ ├── author-patreon.spec.ts │ │ │ │ │ ├── author-twitter.spec.ts │ │ │ │ │ ├── choose-template.spec.ts │ │ │ │ │ ├── contributing.spec.ts │ │ │ │ │ ├── install-command.spec.ts │ │ │ │ │ ├── license-name.spec.ts │ │ │ │ │ ├── license-url.spec.ts │ │ │ │ │ ├── mock │ │ │ │ │ │ └── index.mock.ts │ │ │ │ │ ├── project-description.spec.ts │ │ │ │ │ ├── project-documentation-url.spec.ts │ │ │ │ │ ├── project-homepage.spec.ts │ │ │ │ │ ├── project-name.spec.ts │ │ │ │ │ ├── project-prerequisites.spec.ts │ │ │ │ │ ├── project-version.spec.ts │ │ │ │ │ ├── spec.ts │ │ │ │ │ ├── test-command.spec.ts │ │ │ │ │ └── usage.spec.ts │ │ │ │ └── usage.ts │ │ │ ├── removeCommand │ │ │ │ ├── removeInit.ts │ │ │ │ └── tests │ │ │ │ │ └── removeInit.spec.ts │ │ │ └── tests │ │ │ │ └── index.spec.ts │ │ └── tests │ │ │ └── askQuestions.spec.ts │ └── validations │ │ ├── IsInvalidArgs.ts │ │ ├── ValidateOptions.ts │ │ └── tests │ │ ├── IsInvalidArgs.spec.ts │ │ ├── ValidateOptions.spec.ts │ │ ├── mock │ │ └── index.mock.ts │ │ └── spec.ts ├── index.ts ├── projectEnv │ ├── projectInfo.ts │ ├── tests │ │ ├── mock │ │ │ └── index.mock.ts │ │ ├── projectInfo.spec.ts │ │ └── utils.spec.ts │ └── utils.ts ├── templates │ ├── fileWriter │ │ ├── index.ts │ │ └── tests │ │ │ ├── index.spec.ts │ │ │ └── mock │ │ │ └── index.mock.ts │ └── files │ │ ├── footer.md │ │ ├── optional │ │ ├── template-ACKNOWLEDGMENTS.md │ │ ├── template-AUTHORS.md │ │ ├── template-CHANGELOG.md │ │ ├── template-CODEOWNERS.md │ │ ├── template-CONTRIBUTORS.md │ │ └── template-SUPPORT.md │ │ └── required │ │ ├── template-APACHE-LICENSE.md │ │ ├── template-BUG_REPORT.md │ │ ├── template-CODE_OF_CONDUCT.md │ │ ├── template-CONTRIBUTING.md │ │ ├── template-FEATURE_REQUEST.md │ │ ├── template-GNU-LICENSE.md │ │ ├── template-ISC-LICENSE.md │ │ ├── template-MIT-LICENSE.md │ │ ├── template-MOZILLA-LICENSE.md │ │ ├── template-PULL_REQUEST_TEMPLATE.md │ │ ├── template-html-README.md │ │ └── template-noHtml-README.md ├── tests.spec.ts └── tests │ └── index.spec.ts ├── tsconfig.json ├── tslint.json ├── types └── typeDeclarations.interface.ts └── yarn.lock /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/.babelrc -------------------------------------------------------------------------------- /.coveralls.yml: -------------------------------------------------------------------------------- 1 | repo_token: HxxK3LI28CYP0kJsg5FMO90N4OJDG9JLM -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/.gitignore -------------------------------------------------------------------------------- /.nycrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/.nycrc -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/.prettierrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/package.json -------------------------------------------------------------------------------- /src/common/alerts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/common/alerts.ts -------------------------------------------------------------------------------- /src/common/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/common/index.ts -------------------------------------------------------------------------------- /src/common/tests/alert.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/common/tests/alert.spec.ts -------------------------------------------------------------------------------- /src/common/tests/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/common/tests/index.spec.ts -------------------------------------------------------------------------------- /src/common/tests/mock/alert.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/common/tests/mock/alert.mock.ts -------------------------------------------------------------------------------- /src/common/tests/mock/index.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/common/tests/mock/index.mock.ts -------------------------------------------------------------------------------- /src/common/tests/spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/common/tests/spec.ts -------------------------------------------------------------------------------- /src/core/actions/actionsUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/core/actions/actionsUtils.ts -------------------------------------------------------------------------------- /src/core/actions/checkActions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/core/actions/checkActions/index.ts -------------------------------------------------------------------------------- /src/core/actions/checkActions/tests/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/core/actions/checkActions/tests/index.spec.ts -------------------------------------------------------------------------------- /src/core/actions/checkActions/tests/mock/index.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/core/actions/checkActions/tests/mock/index.mock.ts -------------------------------------------------------------------------------- /src/core/actions/createActions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/core/actions/createActions/index.ts -------------------------------------------------------------------------------- /src/core/actions/createActions/tests/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/core/actions/createActions/tests/index.spec.ts -------------------------------------------------------------------------------- /src/core/actions/createActions/tests/mock/index.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/core/actions/createActions/tests/mock/index.mock.ts -------------------------------------------------------------------------------- /src/core/actions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/core/actions/index.ts -------------------------------------------------------------------------------- /src/core/actions/listActions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/core/actions/listActions/index.ts -------------------------------------------------------------------------------- /src/core/actions/listActions/tests/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/core/actions/listActions/tests/index.spec.ts -------------------------------------------------------------------------------- /src/core/actions/listActions/tests/mock/index.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/core/actions/listActions/tests/mock/index.mock.ts -------------------------------------------------------------------------------- /src/core/actions/removeActions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/core/actions/removeActions/index.ts -------------------------------------------------------------------------------- /src/core/actions/removeActions/tests/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/core/actions/removeActions/tests/index.spec.ts -------------------------------------------------------------------------------- /src/core/actions/removeActions/tests/mock/index.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/core/actions/removeActions/tests/mock/index.mock.ts -------------------------------------------------------------------------------- /src/core/actions/tests/actionUtils.spec.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/core/actions/tests/index.spec.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/core/coreUtils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/core/coreUtils/index.ts -------------------------------------------------------------------------------- /src/core/coreUtils/tests/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/core/coreUtils/tests/index.spec.ts -------------------------------------------------------------------------------- /src/core/coreUtils/tests/mock/index.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/core/coreUtils/tests/mock/index.mock.ts -------------------------------------------------------------------------------- /src/core/questions/askQuestions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/core/questions/askQuestions.ts -------------------------------------------------------------------------------- /src/core/questions/setupQuestions/createCommand/createInit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/core/questions/setupQuestions/createCommand/createInit.ts -------------------------------------------------------------------------------- /src/core/questions/setupQuestions/createCommand/tests/createInit.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/core/questions/setupQuestions/createCommand/tests/createInit.spec.ts -------------------------------------------------------------------------------- /src/core/questions/setupQuestions/createCommand/tests/mock/createInit.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/core/questions/setupQuestions/createCommand/tests/mock/createInit.mock.ts -------------------------------------------------------------------------------- /src/core/questions/setupQuestions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/core/questions/setupQuestions/index.ts -------------------------------------------------------------------------------- /src/core/questions/setupQuestions/projectQuestions/author-email.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/core/questions/setupQuestions/projectQuestions/author-email.ts -------------------------------------------------------------------------------- /src/core/questions/setupQuestions/projectQuestions/author-github.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/core/questions/setupQuestions/projectQuestions/author-github.ts -------------------------------------------------------------------------------- /src/core/questions/setupQuestions/projectQuestions/author-name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/core/questions/setupQuestions/projectQuestions/author-name.ts -------------------------------------------------------------------------------- /src/core/questions/setupQuestions/projectQuestions/author-patreon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/core/questions/setupQuestions/projectQuestions/author-patreon.ts -------------------------------------------------------------------------------- /src/core/questions/setupQuestions/projectQuestions/author-twitter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/core/questions/setupQuestions/projectQuestions/author-twitter.ts -------------------------------------------------------------------------------- /src/core/questions/setupQuestions/projectQuestions/choose-template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/core/questions/setupQuestions/projectQuestions/choose-template.ts -------------------------------------------------------------------------------- /src/core/questions/setupQuestions/projectQuestions/contributing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/core/questions/setupQuestions/projectQuestions/contributing.ts -------------------------------------------------------------------------------- /src/core/questions/setupQuestions/projectQuestions/install-command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/core/questions/setupQuestions/projectQuestions/install-command.ts -------------------------------------------------------------------------------- /src/core/questions/setupQuestions/projectQuestions/license-name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/core/questions/setupQuestions/projectQuestions/license-name.ts -------------------------------------------------------------------------------- /src/core/questions/setupQuestions/projectQuestions/license-url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/core/questions/setupQuestions/projectQuestions/license-url.ts -------------------------------------------------------------------------------- /src/core/questions/setupQuestions/projectQuestions/project-description.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/core/questions/setupQuestions/projectQuestions/project-description.ts -------------------------------------------------------------------------------- /src/core/questions/setupQuestions/projectQuestions/project-documentation-url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/core/questions/setupQuestions/projectQuestions/project-documentation-url.ts -------------------------------------------------------------------------------- /src/core/questions/setupQuestions/projectQuestions/project-homepage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/core/questions/setupQuestions/projectQuestions/project-homepage.ts -------------------------------------------------------------------------------- /src/core/questions/setupQuestions/projectQuestions/project-name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/core/questions/setupQuestions/projectQuestions/project-name.ts -------------------------------------------------------------------------------- /src/core/questions/setupQuestions/projectQuestions/project-prerequisites.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/core/questions/setupQuestions/projectQuestions/project-prerequisites.ts -------------------------------------------------------------------------------- /src/core/questions/setupQuestions/projectQuestions/project-version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/core/questions/setupQuestions/projectQuestions/project-version.ts -------------------------------------------------------------------------------- /src/core/questions/setupQuestions/projectQuestions/test-command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/core/questions/setupQuestions/projectQuestions/test-command.ts -------------------------------------------------------------------------------- /src/core/questions/setupQuestions/projectQuestions/tests/author-email.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/core/questions/setupQuestions/projectQuestions/tests/author-email.spec.ts -------------------------------------------------------------------------------- /src/core/questions/setupQuestions/projectQuestions/tests/author-github.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/core/questions/setupQuestions/projectQuestions/tests/author-github.spec.ts -------------------------------------------------------------------------------- /src/core/questions/setupQuestions/projectQuestions/tests/author-name.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/core/questions/setupQuestions/projectQuestions/tests/author-name.spec.ts -------------------------------------------------------------------------------- /src/core/questions/setupQuestions/projectQuestions/tests/author-patreon.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/core/questions/setupQuestions/projectQuestions/tests/author-patreon.spec.ts -------------------------------------------------------------------------------- /src/core/questions/setupQuestions/projectQuestions/tests/author-twitter.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/core/questions/setupQuestions/projectQuestions/tests/author-twitter.spec.ts -------------------------------------------------------------------------------- /src/core/questions/setupQuestions/projectQuestions/tests/choose-template.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/core/questions/setupQuestions/projectQuestions/tests/choose-template.spec.ts -------------------------------------------------------------------------------- /src/core/questions/setupQuestions/projectQuestions/tests/contributing.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/core/questions/setupQuestions/projectQuestions/tests/contributing.spec.ts -------------------------------------------------------------------------------- /src/core/questions/setupQuestions/projectQuestions/tests/install-command.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/core/questions/setupQuestions/projectQuestions/tests/install-command.spec.ts -------------------------------------------------------------------------------- /src/core/questions/setupQuestions/projectQuestions/tests/license-name.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/core/questions/setupQuestions/projectQuestions/tests/license-name.spec.ts -------------------------------------------------------------------------------- /src/core/questions/setupQuestions/projectQuestions/tests/license-url.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/core/questions/setupQuestions/projectQuestions/tests/license-url.spec.ts -------------------------------------------------------------------------------- /src/core/questions/setupQuestions/projectQuestions/tests/mock/index.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/core/questions/setupQuestions/projectQuestions/tests/mock/index.mock.ts -------------------------------------------------------------------------------- /src/core/questions/setupQuestions/projectQuestions/tests/project-description.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/core/questions/setupQuestions/projectQuestions/tests/project-description.spec.ts -------------------------------------------------------------------------------- /src/core/questions/setupQuestions/projectQuestions/tests/project-documentation-url.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/core/questions/setupQuestions/projectQuestions/tests/project-documentation-url.spec.ts -------------------------------------------------------------------------------- /src/core/questions/setupQuestions/projectQuestions/tests/project-homepage.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/core/questions/setupQuestions/projectQuestions/tests/project-homepage.spec.ts -------------------------------------------------------------------------------- /src/core/questions/setupQuestions/projectQuestions/tests/project-name.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/core/questions/setupQuestions/projectQuestions/tests/project-name.spec.ts -------------------------------------------------------------------------------- /src/core/questions/setupQuestions/projectQuestions/tests/project-prerequisites.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/core/questions/setupQuestions/projectQuestions/tests/project-prerequisites.spec.ts -------------------------------------------------------------------------------- /src/core/questions/setupQuestions/projectQuestions/tests/project-version.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/core/questions/setupQuestions/projectQuestions/tests/project-version.spec.ts -------------------------------------------------------------------------------- /src/core/questions/setupQuestions/projectQuestions/tests/spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/core/questions/setupQuestions/projectQuestions/tests/spec.ts -------------------------------------------------------------------------------- /src/core/questions/setupQuestions/projectQuestions/tests/test-command.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/core/questions/setupQuestions/projectQuestions/tests/test-command.spec.ts -------------------------------------------------------------------------------- /src/core/questions/setupQuestions/projectQuestions/tests/usage.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/core/questions/setupQuestions/projectQuestions/tests/usage.spec.ts -------------------------------------------------------------------------------- /src/core/questions/setupQuestions/projectQuestions/usage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/core/questions/setupQuestions/projectQuestions/usage.ts -------------------------------------------------------------------------------- /src/core/questions/setupQuestions/removeCommand/removeInit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/core/questions/setupQuestions/removeCommand/removeInit.ts -------------------------------------------------------------------------------- /src/core/questions/setupQuestions/removeCommand/tests/removeInit.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/core/questions/setupQuestions/removeCommand/tests/removeInit.spec.ts -------------------------------------------------------------------------------- /src/core/questions/setupQuestions/tests/index.spec.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/core/questions/tests/askQuestions.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/core/questions/tests/askQuestions.spec.ts -------------------------------------------------------------------------------- /src/core/validations/IsInvalidArgs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/core/validations/IsInvalidArgs.ts -------------------------------------------------------------------------------- /src/core/validations/ValidateOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/core/validations/ValidateOptions.ts -------------------------------------------------------------------------------- /src/core/validations/tests/IsInvalidArgs.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/core/validations/tests/IsInvalidArgs.spec.ts -------------------------------------------------------------------------------- /src/core/validations/tests/ValidateOptions.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/core/validations/tests/ValidateOptions.spec.ts -------------------------------------------------------------------------------- /src/core/validations/tests/mock/index.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/core/validations/tests/mock/index.mock.ts -------------------------------------------------------------------------------- /src/core/validations/tests/spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/core/validations/tests/spec.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/projectEnv/projectInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/projectEnv/projectInfo.ts -------------------------------------------------------------------------------- /src/projectEnv/tests/mock/index.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/projectEnv/tests/mock/index.mock.ts -------------------------------------------------------------------------------- /src/projectEnv/tests/projectInfo.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/projectEnv/tests/projectInfo.spec.ts -------------------------------------------------------------------------------- /src/projectEnv/tests/utils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/projectEnv/tests/utils.spec.ts -------------------------------------------------------------------------------- /src/projectEnv/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/projectEnv/utils.ts -------------------------------------------------------------------------------- /src/templates/fileWriter/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/templates/fileWriter/index.ts -------------------------------------------------------------------------------- /src/templates/fileWriter/tests/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/templates/fileWriter/tests/index.spec.ts -------------------------------------------------------------------------------- /src/templates/fileWriter/tests/mock/index.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/templates/fileWriter/tests/mock/index.mock.ts -------------------------------------------------------------------------------- /src/templates/files/footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/templates/files/footer.md -------------------------------------------------------------------------------- /src/templates/files/optional/template-ACKNOWLEDGMENTS.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/templates/files/optional/template-AUTHORS.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/templates/files/optional/template-CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/templates/files/optional/template-CHANGELOG.md -------------------------------------------------------------------------------- /src/templates/files/optional/template-CODEOWNERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/templates/files/optional/template-CODEOWNERS.md -------------------------------------------------------------------------------- /src/templates/files/optional/template-CONTRIBUTORS.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/templates/files/optional/template-SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/templates/files/optional/template-SUPPORT.md -------------------------------------------------------------------------------- /src/templates/files/required/template-APACHE-LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/templates/files/required/template-APACHE-LICENSE.md -------------------------------------------------------------------------------- /src/templates/files/required/template-BUG_REPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/templates/files/required/template-BUG_REPORT.md -------------------------------------------------------------------------------- /src/templates/files/required/template-CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/templates/files/required/template-CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /src/templates/files/required/template-CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/templates/files/required/template-CONTRIBUTING.md -------------------------------------------------------------------------------- /src/templates/files/required/template-FEATURE_REQUEST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/templates/files/required/template-FEATURE_REQUEST.md -------------------------------------------------------------------------------- /src/templates/files/required/template-GNU-LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/templates/files/required/template-GNU-LICENSE.md -------------------------------------------------------------------------------- /src/templates/files/required/template-ISC-LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/templates/files/required/template-ISC-LICENSE.md -------------------------------------------------------------------------------- /src/templates/files/required/template-MIT-LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/templates/files/required/template-MIT-LICENSE.md -------------------------------------------------------------------------------- /src/templates/files/required/template-MOZILLA-LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/templates/files/required/template-MOZILLA-LICENSE.md -------------------------------------------------------------------------------- /src/templates/files/required/template-PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/templates/files/required/template-PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /src/templates/files/required/template-html-README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/templates/files/required/template-html-README.md -------------------------------------------------------------------------------- /src/templates/files/required/template-noHtml-README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/templates/files/required/template-noHtml-README.md -------------------------------------------------------------------------------- /src/tests.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/src/tests.spec.ts -------------------------------------------------------------------------------- /src/tests/index.spec.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/tslint.json -------------------------------------------------------------------------------- /types/typeDeclarations.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/types/typeDeclarations.interface.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oluwasegun-AA/md-generator/HEAD/yarn.lock --------------------------------------------------------------------------------