UNPKG

334 BJavaScriptView Raw
1#!/usr/bin/env node
2
3/**
4 * Update dependencies.
5 */
6
7"use strict";
8
9process.chdir(__dirname + '/..');
10
11var updating = require('apeman-dev-commons-updating'),
12 tasking = require('apeman-dev-commons-tasking');
13
14tasking.runTasks('update', [
15 function (callback) {
16 updating.updateDependencies({}, callback);
17 }
18], true);
\No newline at end of file