├── .bin └── test.js ├── .editorconfig ├── .gitignore ├── .prettierignore ├── LICENSE.md ├── README.md ├── commands └── PrettyRoute.ts ├── package.json ├── pnpm-lock.yaml └── tsconfig.json /.bin/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Julien-R44/pretty-list-routes/HEAD/.bin/test.js -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Julien-R44/pretty-list-routes/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Julien-R44/pretty-list-routes/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Julien-R44/pretty-list-routes/HEAD/.prettierignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Julien-R44/pretty-list-routes/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Julien-R44/pretty-list-routes/HEAD/README.md -------------------------------------------------------------------------------- /commands/PrettyRoute.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Julien-R44/pretty-list-routes/HEAD/commands/PrettyRoute.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Julien-R44/pretty-list-routes/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Julien-R44/pretty-list-routes/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Julien-R44/pretty-list-routes/HEAD/tsconfig.json --------------------------------------------------------------------------------