// @flowimportloaderUtilsfrom'loader-utils';// Note: no export default here cause of Babel 6module.exports=functionincludeFilesLoader(sourceCode:string){if(this.cacheable){this.cacheable();}constloaderOptions=loaderUtils.getOptions(this);if(loaderOptions.include&&loaderOptions.include.length){constincludes=loaderOptions.include.map((modPath)=>`require(${loaderUtils.stringifyRequest(this,modPath)});`).join('\n');constcode=[includes,sourceCode,].join('\n');this.callback(null,code,null);return;}this.callback(null,sourceCode,null);};