1下载

使用 coolie demo 命令下载本 demo。

  1. coolie demo 4

2demo

2.1初始化目录

新建coolie-demo4目录:

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

2.2初始化文件

2.2.1index.html

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

2.2.2coolie-demo4.css

  1. body{
  2. background: #000;
  3. }
  4. h1{
  5. color: #fff;
  6. }

此时目录结构为:

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

2.3构建前运行

使用 CSS 基本构建(demo4) - 图1sts 执行:

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

CSS 基本构建(demo4) - 图2

2.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-demo4/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-demo4.css
  4. ├── coolie.config.js
  5. └── index.html
  6. 1 directory, 3 files

2.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-demo4/webroot-dev/coolie.config.js
  9. src dirname >> /coolie-demo4/webroot-dev
  10. dest dirname >> /coolie-demo4/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. >> /coolie-demo4.css
  19. >> /index.html
  20. 6/6 >> generate a resource relationship map
  21. >> ../webroot-pro/coolie-map.json
  22. build success >> past 114ms

构建之后的目录结构为:

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

2.6构建后运行

使用 CSS 基本构建(demo4) - 图3sts 执行:

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

CSS 基本构建(demo4) - 图4

2.7构建结果分析

2.7.1index.html

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

2.7.2css 文件

  1. body{background:#000}h1{color:#fff}
  • 构建之后的 html 被压缩了
  • 构建之后的 linkhrefcoolie-demo4.css 变为 /static/css/cb7915fd4819d13bbeac010e5523bce8.css
  • css 文件也被压缩了

3github

CSS 基本构建(demo4) - 图5github.com

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