parse-dashboard 7.1.1-alpha.3 → 7.2.0-alpha.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -9,8 +9,9 @@
9
9
  'use strict'
10
10
  const CLIHelper = require('./CLIHelper.js');
11
11
  const startServer = require('./server');
12
+ const { Command } = require('commander');
12
13
 
13
- const program = require('commander');
14
+ const program = new Command();
14
15
  program.option('--appId [appId]', 'the app Id of the app you would like to manage.');
15
16
  program.option('--masterKey [masterKey]', 'the master key of the app you would like to manage.');
16
17
  program.option('--masterKeyTtl [masterKeyTtl]', 'the master key ttl of the app you would like to manage.');