Qooxdoo - include a file in your build.

Adding a file to be copied from the source/ to the build/ dir is so simple that it should really have been an example for it. Here’s one:


"jobs" :
{
"build-script" :
{
"compile-options" :
{
"code" :
{
"format" : true
}
},
"copy-files":
{
"files": ["login.html"]
}
}
}
|