$ npm run build
> alpaca@1.5.27 build /Users/me/code/alpaca
> gulp default
fs.js:27
const { Math, Object } = primordials;
^
ReferenceError: primordials is not defined
at fs.js:27:26
I found this StackOverflow answer:
I suspect you're using node 12 and gulp 3. That combination does not work: gulpjs/gulp#2324
...
Solution: Either upgrade to gulp 4 or downgrade to an earlier node.
So I would like to request an upgrade to gulp 4, or alternatively add some docs about supported Node versions. Thank you!