UNPKG

295 BJavaScriptView Raw
1#!/usr/bin/env node
2
3/**
4 * Deploy docs.
5 */
6
7'use strict'
8
9process.chdir(`${__dirname}/..`)
10
11const apeTasking = require('ape-tasking')
12const apeDeploying = require('ape-deploying')
13
14apeTasking.runTasks('deploy', [
15 (callback) => {
16 apeDeploying.deployGhPages("doc", callback)
17 }
18], true)
19