UNPKG

300 BJavaScriptView Raw
1module.exports = function (content) {
2 if (!this.__mpx__) {
3 return content
4 }
5 this.__mpx__.fileDependencies.forEach(file => {
6 this.addDependency(file)
7 })
8 this.__mpx__.contextDependencies.forEach(context => {
9 this.addContextDependency(context)
10 })
11 return this.__mpx__.content
12}