Run npm install git-push --save-dev
;
Create tools/deploy.js
file with approximately the following content:
import push from 'git-push';
const remote = {
name: 'production',
url: 'http://github.com/user/test.example.com',
branch: 'gh-pages'
};
export default async () => {
await build();
await new Promise(resolve => push('./build', remote, resolve));
});
Add this script to package.json/scripts
. Then you can deploy your app with a single command:
$ npm run deploy