shichen b6c5ecc67a init hai 10 meses
..
README.md b6c5ecc67a init hai 10 meses
index.js b6c5ecc67a init hai 10 meses
package.json b6c5ecc67a init hai 10 meses

README.md

wxml-minifier

微信小程序WXML压缩工具

安装

npm i -D wxml-minifier

使用

  • minifier(resource[, options])

基础使用:

var minifier = require('wxml-minifier')
var wxmlStr = `
<view class="home"         >
<!-- test -->
</view>
`
var minifiedWxmlStr = minifier(wxmlStr) // 输出 <view class="home></view>

选项

  • whitespace

    Type: Boolean Default: true 移除WXML多余的空格

  • comment Type: Boolean Default: true 移除所有的注释

  • 更多