private _getLicense()

in lib/builders/MaterialBuilder.ts [95:113]


  private _getLicense(modules: string[]): string {
    let lines = [
      'AngularJS Material Design',
      'https://github.com/angular/material',
      '@license MIT',
      'v' + this._options.version,
      'Built with: angular-material-tools',
      'Includes modules: ' + modules.join(', '),
      '',
      `Copyright ${new Date().getFullYear()} Google LLC. All Rights Reserved.`,
      'Use of this source code is governed by an MIT-style license that can be ' +
      'found in the LICENSE file at http://material.angularjs.org/LICENSE.'
    ].map(line => ' * ' + line);

    lines.unshift('/*!');
    lines.push(' */', '\n');

    return lines.join('\n');
  }