UNPKG

ol-mbtiles

Version:

MBTiles format reader for Openlayers

19 lines (17 loc) 496 B
const ghpages = require('gh-pages'); const path = require('path'); process.stdout.write('Publishing to "gh-pages" branch... '); ghpages.publish( path.resolve(__dirname, '..', 'docs/examples'), {message: 'Updated documentation'}, function (err) { if (err) { process.stdout.write('error\n'); console.error(err); process.exit(1); } else { process.stdout.write('success\n'); process.exit(0); } } );