├── .gitignore ├── LICENSE ├── README.md ├── package.json └── typeorm ├── fix-count.js ├── fix-find.js ├── fix-findOne.js ├── fix-findOneBy.js ├── fix-findOneByOrFail.js ├── fix-findOneOrFail.js └── fix-getManagerRepository.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clintonb/codemods/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clintonb/codemods/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clintonb/codemods/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clintonb/codemods/HEAD/package.json -------------------------------------------------------------------------------- /typeorm/fix-count.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clintonb/codemods/HEAD/typeorm/fix-count.js -------------------------------------------------------------------------------- /typeorm/fix-find.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clintonb/codemods/HEAD/typeorm/fix-find.js -------------------------------------------------------------------------------- /typeorm/fix-findOne.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clintonb/codemods/HEAD/typeorm/fix-findOne.js -------------------------------------------------------------------------------- /typeorm/fix-findOneBy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clintonb/codemods/HEAD/typeorm/fix-findOneBy.js -------------------------------------------------------------------------------- /typeorm/fix-findOneByOrFail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clintonb/codemods/HEAD/typeorm/fix-findOneByOrFail.js -------------------------------------------------------------------------------- /typeorm/fix-findOneOrFail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clintonb/codemods/HEAD/typeorm/fix-findOneOrFail.js -------------------------------------------------------------------------------- /typeorm/fix-getManagerRepository.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clintonb/codemods/HEAD/typeorm/fix-getManagerRepository.js --------------------------------------------------------------------------------