This message was deleted.
# general
s
This message was deleted.
e
I think you want an
AssetArchive
Copy code
let assetArchive = new AssetArchive({
    "a": new FileArchive('./a'),
    "b": new FileArchive("./b"),
});
🙌 1
i
Thanks Fraser, this is for building a lambda layer from two folders so I ended up building 2 lambda layers because you can’t have
"."
as a key twice… But I also might give this a try:
Copy code
new AssetArchive({
  '.': new FileArchive('./a'),
  'x': new FileArchive('./b/x'),
  'y': new FileArchive('./b/y'),
})