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