├── .editorconfig ├── .eslintrc.yml ├── .github ├── CODE_OF_CONDUCT.md └── workflows │ └── nodejs.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── package.json ├── src └── create-yo.js └── test └── create-yo.spec.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boneskull/create-yo/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boneskull/create-yo/HEAD/.eslintrc.yml -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boneskull/create-yo/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/workflows/nodejs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boneskull/create-yo/HEAD/.github/workflows/nodejs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boneskull/create-yo/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boneskull/create-yo/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boneskull/create-yo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boneskull/create-yo/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boneskull/create-yo/HEAD/package.json -------------------------------------------------------------------------------- /src/create-yo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boneskull/create-yo/HEAD/src/create-yo.js -------------------------------------------------------------------------------- /test/create-yo.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boneskull/create-yo/HEAD/test/create-yo.spec.js --------------------------------------------------------------------------------