UNPKG

mini-build-script

Version:

wx-script 小程序打包

16 lines (15 loc) 304 B
module.exports = function wxmlLoader(source) { const options = this.getOptions(); if (!options) { return source; } if (options.type === 'wx') { return source; } if (options.type === 's') { return source.replace(/wx:/g, (str) => { return 's-' }); } return source; }