我使用npm和VPS上的节点安装Laravel-mix
操作系统是Ubuntu 16.4
Laravel版本是:5.6
npm版本是:3.5.2
节点版本是:v4.2.6
运行sudo npm run production
显示此错误:
production /var/www/html
cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --
no-progress --hide-modules --config=node_modules/laravel-
mix/setup/webpack.config.js
/var/www/html/node_modules/laravel-mix/setup/webpack.config.js:6
let mix = require('../src/index');
^^^
SyntaxError: Block-scoped declarations (let, const, function, class) not yet supported outside strict mode
at exports.runInThisContext (vm.js:53:16)
at Module._compile (module.js:374:25)
at Object.Module._extensions..js (module.js:417:10)
at Module.load (module.js:344:32)
at Function.Module._load (module.js:301:12)
at Module.require (module.js:354:17)
at require (internal/module.js:12:17)
at requireConfig (/var/www/html/node_modules/webpack/bin/convert-argv.js:97:18)
at /var/www/html/node_modules/webpack/bin/convert-argv.js:104:17
at Array.forEach (native)
npm ERR! Linux 4.4.0-87-generic
npm ERR! argv "/usr/bin/nodejs" "/usr/bin/npm" "run" "production"
npm ERR! node v4.2.6
npm ERR! npm v3.5.2
npm ERR! code ELIFECYCLE
npm ERR! @ production: `cross-env NODE_ENV=production
node_modules/webpack/bin/webpack.js --no-progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the @ production script 'cross-env
NODE_ENV=production node_modules/webpack/bin/webpack.js --no-progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js'.
npm ERR! Make sure you have the latest version of node.js and npm
installed.
npm ERR! If you do, this is most likely a problem with the package,
npm ERR! not with npm itself.
npm ERR! Tell the author that this fails on your system:
npm ERR! cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --no-progress --hide-modules -- config=node_modules/laravel-mix/setup/webpack.config.js
npm ERR! You can get information on how to open an issue for this project with:
npm ERR! npm bugs
npm ERR! Or if that isn't available, you can get their info via:
npm ERR! npm owner ls
npm ERR! There is likely additional logging output above.
npm ERR! Please include the following file with any support request:
npm ERR! /var/www/html/npm-debug.log
如何发出此问题?
答案 0 :(得分:0)
将您的npm
和node
版本更新为最新版本。
只需运行npm i -g npm
您不需要sudo
来运行npm
脚本。只需使用npm run production
答案 1 :(得分:0)
我只是遵循了这些步骤,所以一切正常。尝试进行完全重置:
rm -rf node_modules
rm package-lock.json yarn.lock
npm cache clear --force
npm install
答案 2 :(得分:0)
可能您正在使用旧/新版本的 node,它与您的某些软件包不兼容(请参阅运行 npm install
时的所有警告)。尝试更改节点版本。
nvm use 14
答案 3 :(得分:0)
Node 版本在某些情况下会出问题,请尝试
n 14
将节点版本更改为 14(如果您安装了 n)