├── .eslintignore ├── .eslintrc ├── .github ├── dependabot.yml └── workflows │ └── tester.yml ├── .gitignore ├── LICENSE ├── README.md ├── index.js ├── lib └── deployer.js ├── package.json └── test ├── .eslintrc.json └── deployer.spec.js /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | coverage/ 3 | tmp/ -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexojs/hexo-deployer-rsync/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexojs/hexo-deployer-rsync/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/tester.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexojs/hexo-deployer-rsync/HEAD/.github/workflows/tester.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexojs/hexo-deployer-rsync/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexojs/hexo-deployer-rsync/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexojs/hexo-deployer-rsync/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexojs/hexo-deployer-rsync/HEAD/index.js -------------------------------------------------------------------------------- /lib/deployer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexojs/hexo-deployer-rsync/HEAD/lib/deployer.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexojs/hexo-deployer-rsync/HEAD/package.json -------------------------------------------------------------------------------- /test/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexojs/hexo-deployer-rsync/HEAD/test/.eslintrc.json -------------------------------------------------------------------------------- /test/deployer.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexojs/hexo-deployer-rsync/HEAD/test/deployer.spec.js --------------------------------------------------------------------------------