CSS 基本构建(demo4)

1下载

使用 coolie demo 命令下载本 demo。

➜ coolie demo 4

2demo

2.1初始化目录

新建coolie-demo4目录:

.
└── webroot-dev

2 directories, 0 files

2.2初始化文件

2.2.1index.html

<!doctype html>
<meta charset="utf8">

<link rel="stylesheet" href="coolie-demo4.css">

<h1>coolie-demo4</h1>

2.2.2coolie-demo4.css

body{
    background: #000;
}

h1{
    color: #fff;
}

此时目录结构为:

.
└── webroot-dev
    ├── coolie-demo4.css
    └── index.html

1 directory, 2 files

2.3构建前运行

使用 sts 执行:

➜  cd src
➜  sts
                 sts >> A static server is running.
                open >> http://192.168.0.157:56486

2.4前端构建配置

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

➜  coolie init -c

┌────────────────────────────────────┐
│ coolie-cli                         │
│ coolie@1.6.4                       │
│ The front-end development builder. │
└────────────────────────────────────┘
        init success >> /coolie-demo4/webroot-dev/coolie.config.js

修改coolie.config.js为:

/**
 * ======================================================
 * coolie-cli 配置文件 `coolie.config.js`
 * 使用 `coolie init -c` 生成 `coolie.config.js` 文件模板
 * 当前配置文件所在的目录为构建的根目录
 *
 * @link http://coolie.ydr.me/guide/coolie.config.js/
 * @author ydr.me
 * @version 1.6.4
 * @create 2016-01-26 10:28:28
 * =======================================================
 */

'use strict';

module.exports = function (coolie) {
    // coolie 配置
    coolie.config({
        // 是否在构建之前清空目标目录
        clean: true,

        // 目标配置
        dest: {
            // 目标目录,相对于当前文件
            dirname: '../webroot-pro/',
            // 目标根域
            host: '',
            // 版本号长度
            versionLength: 32
        },

        // js 构建
        js: {
            // 入口模块,相对于当前文件
            main: [
                // 支持 glob 语法
                // './static/js/app/**/*.js'
                //【1】
            ],
            // coolie-config.js 路径,相对于当前文件
            //【2】
            'coolie-config.js': null,
            // js 文件保存目录,相对于 dest.dirname
            dest: './static/js/',
            // 分块配置
            chunk: []
        },

        // html 构建
        html: {
            // html 文件,相对于当前文件
            src: [
                // 支持 glob 语法
                //【3】
                'index.html'
            ],
            // 是否压缩
            minify: true
        },

        // css 构建
        css: {
            // css 文件保存目录,相对于 dest.dirname
            dest: './static/css/',
            // css 压缩配置
            minify: {
                compatibility: 'ie7'
            }
        },

        // 资源
        resource: {
            // 资源保存目录,相对于 dest.dirname
            dest: './static/res/',
            // 是否压缩
            minify: true
        },

        // 原样复制文件,相对于当前文件
        copy: [
            // 支持 glob 语法
            // './favicon.ico',
            // './robots.txt'
            //【4】
        ]
    });

    // 使用 coolie 中间件
    // coolie.use(require('coolie-*'));

    // 自定义 coolie 中间件
    //coolie.use(function (options) {
    //    // do sth.
    //    return options;
    //});
};
  • 【1】:去除了入口模块的配置
  • 【2】:取消了模块加载器配置文件的路径
  • 【3】:修改了需要构建的 html 文件路径
  • 【4】:去除了原样复制文件配置

此时的目录结构为:

.
└── webroot-dev
    ├── coolie-demo4.css
    ├── coolie.config.js
    └── index.html

1 directory, 3 files

2.5前端构建

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

➜  coolie build

┌────────────────────────────────────┐
│ coolie-cli                         │
│ coolie@1.6.4                       │
│ The front-end development builder. │
└────────────────────────────────────┘

                 1/6 >> parse coolie config
       coolie config >> /coolie-demo4/webroot-dev/coolie.config.js
         src dirname >> /coolie-demo4/webroot-dev
        dest dirname >> /coolie-demo4/webroot-pro/

                 2/6 >> copy files
          copy files >> no files are copied

                 3/6 >> build main module
           build app >> no main modules

                 4/6 >> override coolie-config.js
      overide config >> `coolie-config.js` is not defined

                 5/6 >> build html
                   √ >> /coolie-demo4.css
                   √ >> /index.html

                 6/6 >> generate a resource relationship map
                   √ >> ../webroot-pro/coolie-map.json

       build success >> past 114ms

构建之后的目录结构为:

.
├── webroot-dev
│   ├── coolie-demo4.css
│   ├── coolie.config.js
│   └── index.html
└── webroot-pro
    ├── coolie-map.json
    ├── index.html
    └── static
        └── css
            └── cb7915fd4819d13bbeac010e5523bce8.css

4 directories, 6 files

2.6构建后运行

使用 sts 执行:

➜  cd ../webroot-pro
➜  sts
                 sts >> A static server is running.
                open >> http://192.168.0.157:56681

2.7构建结果分析

2.7.1index.html

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

2.7.2css 文件

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

3github

github.com