Skip to content

Intro - cddlc.json

cddlc supports automating multi-file builds using the cddlc build command and a cddlc.json config file. To create a new cddlc project in the current folder run

cddlc init

This produces a cddlc.json file with a default build config

cddlc.json
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
{
    "version": "1",
    "plugins": [],
    "builds": [
        {
            "package": "",
            "src": ".",
            "output": "dist/"
        }
    ],
    "options": null
}