Version
2.2
Platform
win / lin amd
What steps will reproduce the bug?
if src is set, static doesn't copy. in this configuration everything works fine. as soon as I uncomment src: "docs", none of those copy commands work.
// _config.ts
const site = lume({
// src: "docs",
});
site.copy("./static", ".");
site.copy("../static", ".");
site.copy("static", ".");
site.copy("static");
How often does it reproduce? Is there a required condition?
always
What is the expected behavior?
static files should copy even if I set src.
What do you see instead?
no copy unless src left at default
Additional information
i spend several hours trying to nail it down, and as far as I can tell copy just doesn't do anything when src is set. I tried many combinations of paths (the docs say static should be relative to docs, and I tried that as well). I tried all different names to make sure there was no magic name handling (i started with _static) but nothing seemed to make a difference. If src is set, copy doesn't work in any combination I came up with.
Version
2.2
Platform
win / lin amd
What steps will reproduce the bug?
if src is set, static doesn't copy. in this configuration everything works fine. as soon as I uncomment src: "docs", none of those copy commands work.
How often does it reproduce? Is there a required condition?
always
What is the expected behavior?
static files should copy even if I set src.
What do you see instead?
no copy unless src left at default
Additional information
i spend several hours trying to nail it down, and as far as I can tell copy just doesn't do anything when src is set. I tried many combinations of paths (the docs say static should be relative to docs, and I tried that as well). I tried all different names to make sure there was no magic name handling (i started with _static) but nothing seemed to make a difference. If src is set, copy doesn't work in any combination I came up with.