使用

    1. coolie init -j
    2. ╔══════════════════════════════════════════════════════╗
    3. coolie@1.0.22
    4. The front-end development builder.
    5. ╚══════════════════════════════════════════════════════╝
    6. init success >> /path/to/src/coolie-config.js

    生成配置文件模板

    1. /**
    2. * ======================================================
    3. * coolie.js 配置文件 `coolie-config.js`
    4. * 使用 `coolie init -j` 生成 `coolie-config.js` 文件模板
    5. * 前端模块加载器配置文件
    6. *
    7. * @link http://coolie.ydr.me/guide/coolie-config.js/
    8. * @author ydr.me
    9. * @version 1.0.22
    10. * @create 2015-12-14 16:43:22
    11. * ======================================================
    12. */
    13. coolie.config({
    14. // 入口模块基准路径,相对于当前文件
    15. base: './app/'
    16. }).use();

    生成的配置文件名为 coolie-config.js(不推荐修改)。

    这里需要注意的点有:

    • base 目录:相对于当前文件,即coolie-config.js
    • base 作用:作为入口模块的相对目录。
    • 模块加载器的配置文件不能省,因为构建之后该文件会被重写。
    • 模块加载文档
    • 模块加载配置文档

    原文: https://coolie.ydr.me/guide/coolie-config.js