0.0.7 • Published 2 years ago

wxml-minifier v0.0.7

Weekly downloads
543
License
MIT
Repository
github
Last release
2 years ago

image

wxml-minifier

微信小程序 WXML 压缩工具

安装

npm i -D wxml-minifier

使用

minifier(resource, options)

基础使用

const minifier = require('wxml-minifier')
const wxmlStr = `
<view class="home"         >
<!-- test -->
</view>
`
const minified = minifier(wxmlStr)

console.log(minified) // <view class="home></view>

选项

名称类型默认值功能
whitespaceBooleantrue移除 wxml 多余的空格
commentBooleantrue移除所有的注释