gregsullivan/_tw

development:esbuild task fails to run on Windows

Closed this issue · 3 comments

With the recent addition of block-editor.js and the adjustment of the esbuild script, I updated my copy of package.json.

Now, when I run npm run watch, I get:

X [ERROR] Could not resolve "./javascript/*.js"

It looks like you are trying to use glob syntax (i.e. "*") with esbuild. This syntax is typically handled by your shell, and isn't handled by esbuild itself. You must expand glob syntax first before passing your paths to esbuild.

(FWIW, I'm on Windows 10, running bash in VS Code.)

Thanks for this! I'm going to deploy a fix now. In the meantime, you should be able to replace this:

./javascript/*.js

with this:

./javascript/script.js ./javascript/block-editor.js

to resolve the problem in your project.

Great suggestion! Worked perfectly. Thanks for the fix.

No problem at all! I'll share the commit below, in case anyone else ever encounters this:

6f908a5

Thanks again for letting me know, and please let me know if you run into any other issues!