Skip to content
This repository has been archived by the owner on May 15, 2019. It is now read-only.

Commit

Permalink
chore: migrate to cli-table3 (#216)
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielRuf authored and jmdobry committed Nov 16, 2018
1 parent f54d639 commit 26b19ff
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/cli/commands/config/defaults.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

require('colors');

const Table = require('cli-table2');
const Table = require('cli-table3');

const config = require('../../../config');
const configCommand = require('./');
Expand Down
2 changes: 1 addition & 1 deletion src/cli/commands/config/list.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

require('colors');

const Table = require('cli-table2');
const Table = require('cli-table3');

const config = require('../../../config');
const configCommand = require('./');
Expand Down
2 changes: 1 addition & 1 deletion src/cli/commands/describe.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
require('colors');

const _ = require('lodash');
const Table = require('cli-table2');
const Table = require('cli-table3');

const Controller = require('../controller');
const { CloudFunction } = require('../../model');
Expand Down
2 changes: 1 addition & 1 deletion src/cli/commands/list.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ require('colors');

const _ = require('lodash');
const fs = require('fs');
const Table = require('cli-table2');
const Table = require('cli-table3');

const Controller = require('../controller');
const { CloudFunction } = require('../../model');
Expand Down
2 changes: 1 addition & 1 deletion src/cli/commands/status.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

require('colors');

const Table = require('cli-table2');
const Table = require('cli-table3');

const Controller = require('../controller');

Expand Down

0 comments on commit 26b19ff

Please sign in to comment.