【发布时间】:2018-09-15 05:05:21
【问题描述】:
我在 VPS 上安装带有 npm 和节点的 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
如何发出这个问题?
【问题讨论】:
-
@SérgioReis 您好,您可以获得更多提示吗?
-
我猜你几乎需要升级节点
标签: laravel laravel-5 webpack laravel-mix