├── .gitignore ├── README.md ├── bin └── ngmigrate ├── migrate.js ├── migrate.json ├── package.json ├── resources ├── banner └── migrate.gif ├── tools └── cleanup.ts ├── yarn-error.log └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | dist 3 | 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgechev/ngmigrate/HEAD/README.md -------------------------------------------------------------------------------- /bin/ngmigrate: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | require('../migrate'); 4 | 5 | -------------------------------------------------------------------------------- /migrate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgechev/ngmigrate/HEAD/migrate.js -------------------------------------------------------------------------------- /migrate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgechev/ngmigrate/HEAD/migrate.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgechev/ngmigrate/HEAD/package.json -------------------------------------------------------------------------------- /resources/banner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgechev/ngmigrate/HEAD/resources/banner -------------------------------------------------------------------------------- /resources/migrate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgechev/ngmigrate/HEAD/resources/migrate.gif -------------------------------------------------------------------------------- /tools/cleanup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgechev/ngmigrate/HEAD/tools/cleanup.ts -------------------------------------------------------------------------------- /yarn-error.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgechev/ngmigrate/HEAD/yarn-error.log -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgechev/ngmigrate/HEAD/yarn.lock --------------------------------------------------------------------------------