├── .eslintrc.json ├── .gitignore ├── LICENSE ├── README.md ├── cli.js ├── extras ├── facelift-ss.png ├── output.png ├── output2.png ├── output3.png └── ss.png ├── facelift.json ├── package.json ├── src ├── router.js ├── tasks │ └── sample_task.js └── utils │ └── utils.js ├── test.js └── yarn.lock /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarferreira/awsnap/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarferreira/awsnap/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarferreira/awsnap/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarferreira/awsnap/HEAD/README.md -------------------------------------------------------------------------------- /cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarferreira/awsnap/HEAD/cli.js -------------------------------------------------------------------------------- /extras/facelift-ss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarferreira/awsnap/HEAD/extras/facelift-ss.png -------------------------------------------------------------------------------- /extras/output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarferreira/awsnap/HEAD/extras/output.png -------------------------------------------------------------------------------- /extras/output2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarferreira/awsnap/HEAD/extras/output2.png -------------------------------------------------------------------------------- /extras/output3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarferreira/awsnap/HEAD/extras/output3.png -------------------------------------------------------------------------------- /extras/ss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarferreira/awsnap/HEAD/extras/ss.png -------------------------------------------------------------------------------- /facelift.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarferreira/awsnap/HEAD/package.json -------------------------------------------------------------------------------- /src/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarferreira/awsnap/HEAD/src/router.js -------------------------------------------------------------------------------- /src/tasks/sample_task.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarferreira/awsnap/HEAD/src/tasks/sample_task.js -------------------------------------------------------------------------------- /src/utils/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarferreira/awsnap/HEAD/src/utils/utils.js -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarferreira/awsnap/HEAD/yarn.lock --------------------------------------------------------------------------------