├── .editorconfig ├── .gitattributes ├── .github ├── CONTRIBUTING.md ├── FUNDING.yml ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml └── workflows │ ├── ci.yml │ ├── codeql.yml │ ├── dependency-review.yml │ └── scorecard.yml ├── .gitignore ├── .mocharc.cjs ├── LICENSE ├── lib ├── cli.js ├── deny-list.js ├── router.js ├── routes │ ├── clear-config.js │ ├── exit.js │ ├── help.js │ ├── home.js │ ├── index.js │ ├── install.js │ ├── run.js │ └── update.js ├── usage.txt └── utils │ ├── global-config.js │ ├── namespace.js │ ├── node-shims.js │ └── project-package.js ├── package.json ├── readme.md ├── screenshot.png ├── test ├── cli.js ├── global-config.js ├── helpers.js ├── route-clear-config.js ├── route-exit.js ├── route-help.js ├── route-home.js ├── route-install.js ├── route-run.js ├── route-update.js └── router.js └── xo.config.mjs /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/yo/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/yo/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/yo/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/yo/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/yo/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/yo/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/yo/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/yo/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/dependency-review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/yo/HEAD/.github/workflows/dependency-review.yml -------------------------------------------------------------------------------- /.github/workflows/scorecard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/yo/HEAD/.github/workflows/scorecard.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | yarn.lock 3 | coverage 4 | .project 5 | -------------------------------------------------------------------------------- /.mocharc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/yo/HEAD/.mocharc.cjs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/yo/HEAD/LICENSE -------------------------------------------------------------------------------- /lib/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/yo/HEAD/lib/cli.js -------------------------------------------------------------------------------- /lib/deny-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/yo/HEAD/lib/deny-list.js -------------------------------------------------------------------------------- /lib/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/yo/HEAD/lib/router.js -------------------------------------------------------------------------------- /lib/routes/clear-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/yo/HEAD/lib/routes/clear-config.js -------------------------------------------------------------------------------- /lib/routes/exit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/yo/HEAD/lib/routes/exit.js -------------------------------------------------------------------------------- /lib/routes/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/yo/HEAD/lib/routes/help.js -------------------------------------------------------------------------------- /lib/routes/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/yo/HEAD/lib/routes/home.js -------------------------------------------------------------------------------- /lib/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/yo/HEAD/lib/routes/index.js -------------------------------------------------------------------------------- /lib/routes/install.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/yo/HEAD/lib/routes/install.js -------------------------------------------------------------------------------- /lib/routes/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/yo/HEAD/lib/routes/run.js -------------------------------------------------------------------------------- /lib/routes/update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/yo/HEAD/lib/routes/update.js -------------------------------------------------------------------------------- /lib/usage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/yo/HEAD/lib/usage.txt -------------------------------------------------------------------------------- /lib/utils/global-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/yo/HEAD/lib/utils/global-config.js -------------------------------------------------------------------------------- /lib/utils/namespace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/yo/HEAD/lib/utils/namespace.js -------------------------------------------------------------------------------- /lib/utils/node-shims.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/yo/HEAD/lib/utils/node-shims.js -------------------------------------------------------------------------------- /lib/utils/project-package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/yo/HEAD/lib/utils/project-package.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/yo/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/yo/HEAD/readme.md -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/yo/HEAD/screenshot.png -------------------------------------------------------------------------------- /test/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/yo/HEAD/test/cli.js -------------------------------------------------------------------------------- /test/global-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/yo/HEAD/test/global-config.js -------------------------------------------------------------------------------- /test/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/yo/HEAD/test/helpers.js -------------------------------------------------------------------------------- /test/route-clear-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/yo/HEAD/test/route-clear-config.js -------------------------------------------------------------------------------- /test/route-exit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/yo/HEAD/test/route-exit.js -------------------------------------------------------------------------------- /test/route-help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/yo/HEAD/test/route-help.js -------------------------------------------------------------------------------- /test/route-home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/yo/HEAD/test/route-home.js -------------------------------------------------------------------------------- /test/route-install.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/yo/HEAD/test/route-install.js -------------------------------------------------------------------------------- /test/route-run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/yo/HEAD/test/route-run.js -------------------------------------------------------------------------------- /test/route-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/yo/HEAD/test/route-update.js -------------------------------------------------------------------------------- /test/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/yo/HEAD/test/router.js -------------------------------------------------------------------------------- /xo.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/yo/HEAD/xo.config.mjs --------------------------------------------------------------------------------