Rafal

Results 3 issues of Rafal

Hey, I recently started playing with Shopify app looking at the in progress example in "Shopify App Node" repo. I noticed it in "verifyRequest" [here](https://github.com/Shopify/shopify-app-node/blob/jakxz/vite/server/middleware/verify-request.js#L21) which doesn't work (throws error)...

Hey, I am running into an issue when I write for...of loop with await. ([example](http://nodent.mailed.me.uk/#async%20function%20tellYouLater(sayWhat)%20%7B%0A%20%20%20%20%2F%2F%20Do%20something%20asynchronous%2C%20such%20as%20DB%20access%2C%20web%20access%2C%20etc.%0A%20%20%20%20return%20%22I%20said%3A%20%22%2BsayWhat%3B%0A%7D%0A%0Aconst%20hooks%20%3D%20%5B%0A%20%20%20%20function()%20%7B%0A%20%20%20%20%20%20%20%20const%20reminder%20%3D%20tellYouLater(%22I'll%20tell%20you%20later%22)%0A%20%20%20%20%20%20%20%20return%20reminder%3B%0A%20%20%20%20%7D%2C%20%20%20%20%0A%20%20%20%20function()%20%7B%0A%20%20%20%20%20%20%20%20const%20reminder%20%3D%20tellYouLater(%22Eat%20more%20salad%22)%0A%20%20%20%20%20%20%20%20return%20reminder%3B%0A%20%20%20%20%7D%20%20%20%20%0A%5D%0A%0Afor%20(const%20hook%20of%20hooks)%20%7B%0A%20%20%20%20console.log(await%20hook())%3B%0A%7D%0A%0A~options~%7B%22mode%22%3A%22lazyThenables%22%2C%22promiseType%22%3A%22native%22%2C%22noRuntime%22%3Afalse%2C%22es6target%22%3Afalse%2C%22wrapAwait%22%3Afalse%2C%22spec%22%3Afalse%7D)). I am transpiling to ES5 with babel and I believe I need `nodent-runtime` to have...

Issue: We are setting both `onlyFiles` and `exxpandDirectories` options to `false` [here](https://github.com/vladshcherbin/rollup-plugin-copy/blob/master/src/index.js#L85-L86) as they are set to `true` by default in globby and fast-glob. In VSCode the autocomplete currently shows...