const fs = require('fs') const path = require('path') const { removeExt, normalizePath, getFlexDirection, parseManifestJson } = require('@dcloudio/uni-cli-shared') const { normalizeNodeModules } = require('./shared') module.exports = function (content, map) { this.cacheable && this.cacheable() if (!process.env.UNI_USING_NVUE_COMPILER) { return this.callback(null, content, map) } if (path.extname(this.resourcePath) !== '.nvue') { return this.callback(null, content, map) } const resourcePath = normalizeNodeModules( removeExt( normalizePath(path.relative(process.env.UNI_INPUT_DIR, this.resourcePath)) ) ) if (!process.UNI_ENTRY[resourcePath]) { return this.callback(null, content, map) } const manifestJsonPath = path.resolve(process.env.UNI_INPUT_DIR, 'manifest.json') const manifestJson = parseManifestJson(fs.readFileSync(manifestJsonPath, 'utf8')) this.callback(null, `${content} `, map) }