Closed jpumford closed 7 years ago
@hut8
So after looking at the issue a bit, it could be an environment thing that we'll have to fix. On OS X the cp
command actually will copy over the contents of domo
to dist
. What OS are you running/which environment is the npm build
command running in?
Hey! Sorry I somehow missed the notification for this. I'm on Linux (Ubuntu Xenial 16.04).
I've created a pull request which has fixed it on our linux machines. Let me know how that works and I'll get it in advanced-sample-app as well.
This can be closed 😄 Thanks for fix.
From @hut8:
Minor issue: running
npm run build
, which is:results in the
dist
folder containing adomo
folder, which contains the thumbnail and manifest.json. Another script,upload
, has:Because
manifest.json
is indist/domo
and not justdist/
, that ends up causing this error:Perhaps the
build
script could just runcp domo/* dist/
instead?