Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Size: Mime:
const {ChainedMap} = require('./Chains')

module.exports = class extends ChainedMap {
  constructor(parent) {
    super(parent)
    this.extend([
      'clientLogLevel',
      'compress',
      'contentBase',
      'filename',
      'headers',
      'historyApiFallback',
      'host',
      'hot',
      'hotOnly',
      'https',
      'inline',
      'lazy',
      'noInfo',
      'overlay',
      'port',
      'progress',
      'public',
      'publicPath',
      'proxy',
      'quiet',
      'setup',
      'staticOptions',
      'stats',
      'watchContentBase',
      'watchOptions',
    ])
  }
}