UNPKG

327 BJavaScriptView Raw
1#!/usr/bin/env node
2
3/**
4 * Deploy this package.
5 */
6
7"use strict";
8
9process.chdir(__dirname + '/..');
10
11var tasking = require('apeman-dev-commons-tasking'),
12 deploying = require('apeman-dev-commons-deploying');
13
14tasking.runTasks([
15 function (callback) {
16 deploying.deployGhPages('docs', callback);
17 }
18], true);