_copyYmls()

in generators/module/index.js [162:174]


  _copyYmls(rootPath, destinationPath) {
    super._copy(this.templatePath(`${rootPath}/**/*.yml`), destinationPath, {
      solutionX: this.options.solutionName,
      moduleTypeX: this.options.moduleType,
      moduleNameX: this.options.moduleName,
      codeFolderX: this.options.codeFolderName,
    }, {
      ...super._baseGlobOptions(),
      process: this._processYmlFile.bind(this)
    }, {
      preProcessPath: this._processPathModuleTokens
    });
  }