1下载

使用 coolie demo 命令下载本 demo。

  1. coolie demo 5

2CSS 合并

详细参考 内容压缩策略

3demo

3.1初始化目录

新建coolie-demo5目录:

  1. .
  2. └── webroot-dev
  3. 1 directories, 0 files

3.2初始化文件

3.2.1index.html

  1. <!doctype html>
  2. <meta charset="utf8">
  3. <!--coolie-->
  4. <link rel="stylesheet" href="coolie-demo5-1.css">
  5. <link rel="stylesheet" href="coolie-demo5-2.css">
  6. <!--/coolie-->
  7. <h1>coolie-demo5</h1>

3.2.2coolie-demo5-1.css

  1. body{
  2. background: #000;
  3. }

3.2.3coolie-demo5-2.css

  1. h1{
  2. color: #fff;
  3. }

此时目录结构为:

  1. .
  2. └── webroot-dev
  3. ├── coolie-demo5-1.css
  4. ├── coolie-demo5-2.css
  5. └── index.html
  6. 1 directory, 3 files

3.3构建前运行

使用 CSS 合并构建(demo5) - 图1sts 执行:

  1. cd src
  2. sts
  3. sts >> A static server is running.
  4. open >> http://172.22.252.118:54141

CSS 合并构建(demo5) - 图2

3.4前端构建配置

使用coolie init -c生成coolie.config.js(前端构建工具的配置文件):

  1. coolie init -c
  2. ┌────────────────────────────────────┐
  3. coolie-cli
  4. coolie@1.6.4
  5. The front-end development builder.
  6. └────────────────────────────────────┘
  7. init success >> /coolie-demo3/webroot-dev/coolie.config.js

修改coolie.config.js为:

  1. /**
  2. * ======================================================
  3. * coolie-cli 配置文件 `coolie.config.js`
  4. * 使用 `coolie init -c` 生成 `coolie.config.js` 文件模板
  5. * 当前配置文件所在的目录为构建的根目录
  6. *
  7. * @link http://coolie.ydr.me/guide/coolie.config.js/
  8. * @author ydr.me
  9. * @version 1.6.4
  10. * @create 2016-01-26 10:28:28
  11. * =======================================================
  12. */
  13. 'use strict';
  14. module.exports = function (coolie) {
  15. // coolie 配置
  16. coolie.config({
  17. // 是否在构建之前清空目标目录
  18. clean: true,
  19. // 目标配置
  20. dest: {
  21. // 目标目录,相对于当前文件
  22. dirname: '../webroot-pro/',
  23. // 目标根域
  24. host: '',
  25. // 版本号长度
  26. versionLength: 32
  27. },
  28. // js 构建
  29. js: {
  30. // 入口模块,相对于当前文件
  31. main: [
  32. // 支持 glob 语法
  33. // './static/js/app/**/*.js'
  34. //【1】
  35. ],
  36. // coolie-config.js 路径,相对于当前文件
  37. //【2】
  38. 'coolie-config.js': null,
  39. // js 文件保存目录,相对于 dest.dirname
  40. dest: './static/js/',
  41. // 分块配置
  42. chunk: []
  43. },
  44. // html 构建
  45. html: {
  46. // html 文件,相对于当前文件
  47. src: [
  48. // 支持 glob 语法
  49. //【3】
  50. 'index.html'
  51. ],
  52. // 是否压缩
  53. minify: true
  54. },
  55. // css 构建
  56. css: {
  57. // css 文件保存目录,相对于 dest.dirname
  58. dest: './static/css/',
  59. // css 压缩配置
  60. minify: {
  61. compatibility: 'ie7'
  62. }
  63. },
  64. // 资源
  65. resource: {
  66. // 资源保存目录,相对于 dest.dirname
  67. dest: './static/res/',
  68. // 是否压缩
  69. minify: true
  70. },
  71. // 原样复制文件,相对于当前文件
  72. copy: [
  73. // 支持 glob 语法
  74. // './favicon.ico',
  75. // './robots.txt'
  76. //【4】
  77. ]
  78. });
  79. // 使用 coolie 中间件
  80. // coolie.use(require('coolie-*'));
  81. // 自定义 coolie 中间件
  82. //coolie.use(function (options) {
  83. // // do sth.
  84. // return options;
  85. //});
  86. };
  • 【1】:去除了入口模块的配置
  • 【2】:取消了模块加载器配置文件的路径
  • 【3】:修改了需要构建的 html 文件路径
  • 【4】:去除了原样复制文件配置
    此时的目录结构为:
  1. .
  2. └── webroot-dev
  3. ├── coolie-demo5-1.css
  4. ├── coolie-demo5-2.css
  5. ├── coolie.config.js
  6. └── index.html
  7. 1 directory, 4 files

3.5前端构建

在 webroot-dev 目录执行前端构建:

  1. coolie build
  2. ┌────────────────────────────────────┐
  3. coolie-cli
  4. coolie@1.6.4
  5. The front-end development builder.
  6. └────────────────────────────────────┘
  7. 1/6 >> parse coolie config
  8. coolie config >> /coolie-demo5/webroot-dev/coolie.config.js
  9. src dirname >> /coolie-demo5/webroot-dev
  10. dest dirname >> /coolie-demo5/webroot-pro/
  11. 2/6 >> copy files
  12. copy files >> no files are copied
  13. 3/6 >> build main module
  14. build app >> no main modules
  15. 4/6 >> override coolie-config.js
  16. overide config >> `coolie-config.js` is not defined
  17. 5/6 >> build html
  18. >> /static/css/9bfb05540ee797bff406a83a4f55aad0.css
  19. >> /index.html
  20. 6/6 >> generate a resource relationship map
  21. >> ../webroot-pro/coolie-map.json
  22. build success >> past 119ms

构建之后的目录结构为:

  1. .
  2. ├── webroot-dev
  3. ├── coolie-demo5-1.css
  4. ├── coolie-demo5-2.css
  5. ├── coolie.config.js
  6. └── index.html
  7. └── webroot-pro
  8. ├── coolie-map.json
  9. ├── index.html
  10. └── static
  11. └── css
  12. └── 9bfb05540ee797bff406a83a4f55aad0.css
  13. 4 directories, 7 files

3.6构建后运行

使用 CSS 合并构建(demo5) - 图3sts 执行:

  1. cd ../webroot-pro
  2. sts
  3. sts >> A static server is running.
  4. open >> http://172.22.252.118:54563

CSS 合并构建(demo5) - 图4

3.7构建结果分析

3.7.1index.html

  1. <!doctype html><meta charset="utf8"> <link rel="stylesheet" href="/static/css/9bfb05540ee797bff406a83a4f55aad0.css"> <h1>coolie-demo5</h1>
  2. <!--coolie build-->

3.7.2css 文件

  1. body{background:#000}
  2. h1{color:#fff}
  • 构建之后的 html 被压缩了
  • 构建之后的 linkhrefcoolie-demo3.css 变为 /static/css/9bfb05540ee797bff406a83a4f55aad0.css
  • css 文件也被合并、压缩了,并且是分行表示的,一行代表一个文件

4github

CSS 合并构建(demo5) - 图5github.com

原文: https://coolie.ydr.me/guide/build-css-combine