BACE icon indicating copy to clipboard operation
BACE copied to clipboard

Minimal version of node js for build

Open SchDen opened this issue 3 years ago • 0 comments

I tried to build by npm run build:dist:chrome on node v12.22.12, it failed with error

await webExt.main(absolutePackageDir);
^^^^^

SyntaxError: Unexpected reserved word

I solved it by set node to v14.20.0.

Could we setup engine in the package.json to 14:

  "engines": {
    "node": "14"
  }

It can works with scripts for auto-switch node version (like this)[https://johnlindquist.com/automatically-switch-node-versions-based-on-your-packagejson-and-precmd-in-zsh/]

SchDen avatar Sep 10 '22 14:09 SchDen