_copyYmls()

in generators/app/index.js [101:112]


  _copyYmls(rootPath, destinationPath) {
    super._copy(this.templatePath(`${rootPath}/**/*.yml`), destinationPath, {
      solutionX: this.options.solutionName,
      codeFolderX: this.options.codeFolderName,
      supportHelix20X: this.options.supportHelix20
    }, {
      ...super._baseGlobOptions(),
      process: this._processYmlFile.bind(this)
    }, {
      preProcessPath: this._processPathSolutionToken
    });
  }