All files / src index.js

100% Statements 7/7
100% Branches 0/0
100% Functions 0/0
100% Lines 7/7
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19    1x 1x 1x 1x 1x   1x   1x                
// © 2018 BTL GROUP LTD -  This package is licensed under the MIT license https://opensource.org/licenses/MIT
 
const args = require('./args')
const chainManagement = require('./chainManagement')
const file = require('./file')
const manifest = require('./manifest')
const scripts = require('./scripts')
 
const logo = require('./logo')
 
module.exports = {
  logo,
  ...args,
  ...chainManagement,
  ...file,
  ...manifest,
  ...scripts
}