You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.9 KiB
52 lines
1.9 KiB
"use strict"; |
|
var __importDefault = (this && this.__importDefault) || function (mod) { |
|
return (mod && mod.__esModule) ? mod : { "default": mod }; |
|
}; |
|
Object.defineProperty(exports, "__esModule", { value: true }); |
|
exports.uniPrePlugin = void 0; |
|
const path_1 = __importDefault(require("path")); |
|
const debug_1 = __importDefault(require("debug")); |
|
const pluginutils_1 = require("@rollup/pluginutils"); |
|
const uni_cli_shared_1 = require("@dcloudio/uni-cli-shared"); |
|
const debugPreJs = (0, debug_1.default)('uni:pre-js'); |
|
const debugPreHtml = (0, debug_1.default)('uni:pre-html'); |
|
const debugPreJsTry = (0, debug_1.default)('uni:pre-js-try'); |
|
const PRE_HTML_EXTNAME = ['.vue', '.uvue']; |
|
const PRE_JS_EXTNAME = ['.json', '.css', '.uts'].concat(PRE_HTML_EXTNAME); |
|
function uniPrePlugin(options = {}) { |
|
const filter = (0, pluginutils_1.createFilter)(options.include, options.exclude); |
|
const preJsFile = uni_cli_shared_1.preUVueJs; |
|
const preHtmlFile = uni_cli_shared_1.preUVueHtml; |
|
return { |
|
name: 'uni:pre', |
|
transform(code, id) { |
|
if (!filter(id)) { |
|
return; |
|
} |
|
const { filename } = (0, uni_cli_shared_1.parseVueRequest)(id); |
|
const extname = path_1.default.extname(filename); |
|
const isHtml = PRE_HTML_EXTNAME.includes(extname); |
|
const isJs = PRE_JS_EXTNAME.includes(extname); |
|
const isPre = isHtml || isJs; |
|
if (isPre) { |
|
debugPreJsTry(id); |
|
} |
|
const hasEndif = isPre && code.includes('#endif'); |
|
if (!hasEndif) { |
|
return; |
|
} |
|
if (isHtml) { |
|
code = preHtmlFile(code); |
|
debugPreHtml(id); |
|
} |
|
if (isJs) { |
|
code = preJsFile(code); |
|
debugPreJs(id); |
|
} |
|
return { |
|
code, |
|
}; |
|
}, |
|
}; |
|
} |
|
exports.uniPrePlugin = uniPrePlugin;
|
|
|