rsnext/server/build/loaders/emit-file-loader.js

17 lines
460 B
JavaScript
Raw Normal View History

2016-11-16 08:04:57 +01:00
import loaderUtils from 'loader-utils'
2016-10-15 18:17:27 +02:00
module.exports = function (content) {
this.cacheable()
2016-11-16 08:04:57 +01:00
const query = loaderUtils.parseQuery(this.query)
2016-10-15 18:17:27 +02:00
const name = query.name || '[hash].[ext]'
const context = query.context || this.options.context
const regExp = query.regExp
const opts = { context, content, regExp }
2016-11-16 08:04:57 +01:00
const interpolatedName = loaderUtils.interpolateName(this, name, opts)
2016-10-15 18:17:27 +02:00
this.emitFile(interpolatedName, content)
return content
}