fis3-deploy-html-minifier

1.1.0 • Public • Published

fis3-deploy-html-minifier

A fis3 plugin to compress file with html-minifier on deploy stage.

npm Build Status semantic-release license

Thanks for fis3-deploy-i18n-template

在前端的工程构建工具FIS3发布阶段,将modified中命中templatePattern规则,或者未设置templatePattern,但是拥有isHtmlLike: true的文件,使用 html-minifier 进行压缩。

使用说明

如何安装

yarn add fis3-deploy-html-minifier -D
# OR
npm install fis3-deploy-html-minifier -D

默认配置

/**
 * @type {Object} DEFAULT_CONFIG - 插件默认配置
 * @property {string} [templatePattern=''] - 需要做多语言处理文件subpath的glob规则,默认为所有html文件
 * @property {string} [ignorePattern=''] - 需要忽略编译的glob规则
 * @property {...object} minifyOptions - html-minifiers的配置项,具体的可以参考[options-quick-reference](https://github.com/kangax/html-minifier#options-quick-reference)
 */
{
  templatePattern: '',
  ignorePattern: '',
  ...minifierOptions,
};

参考示例

具体的实验可以参考这个项目fis3-examples

项目目录结构

# project root path
│
├── template-folder
│   ├── index.html
│   ├── _not_compress.html
│   ├── ...
│   └── sub-folder
│       ├── detail.html
│       └── ...
│
├── fis-conf.js
│
└── package.json

配置fis-conf.jsfis3-deploy-html-minifier相关的内容

// ------ templates ------
fis.match('/template-folder/(**)/(*.html)', {
  release: '/$1/$2',
});
fis.match('/template-folder/(*.html)', {
  release: '/$1',
});
// ------ deploy ------
fis.match('**', {
  deploy: [
    fis.plugin('html-minifier', {
      templatePattern: '',
      i18nPattern: '/template-folder/**/_*.html',
      // @see https://github.com/kangax/html-minifier#options-quick-reference
      removeComments: true,
      collapseWhitespace: true,
      removeRedundantAttributes: true,
      useShortDoctype: true,
      removeEmptyAttributes: true,
      removeStyleLinkTypeAttributes: true,
      keepClosingSlash: true,
      minifyJS: true,
      minifyCSS: true,
      minifyURLs: true,
    }),
  ],
});

参考

License

Copyright © 2017-present. This source code is licensed under the MIT license found in the LICENSE file.


Made by Tony (blog)

Dependents (0)

Package Sidebar

Install

npm i fis3-deploy-html-minifier

Weekly Downloads

0

Version

1.1.0

License

MIT

Unpacked Size

17.8 kB

Total Files

7

Last publish

Collaborators

  • tonyc726