2017-02-17 45 views
5

我只是提出我的項目從一臺計算機到另一個,當我運行webpack --watch我得到以下錯誤:的WebPack語法錯誤:意外標記=>

C:\Users\joe_coolish\AppData\Roaming\npm\node_modules\webpack\bin\webpack.js:186 
       outputOptions.children = options.map(o => o.stats); 
                 ^^ 
SyntaxError: Unexpected token => 
    at exports.runInThisContext (vm.js:73:16) 
    at Module._compile (module.js:443:25) 
    at Object.Module._extensions..js (module.js:478:10) 
    at Module.load (module.js:355:32) 
    at Function.Module._load (module.js:310:12) 
    at Function.Module.runMain (module.js:501:10) 
    at startup (node.js:129:16) 
    at node.js:814:3 

我的其他計算機transpiles完全相同的設置沒有任何問題。什麼會造成這種情況?

我的WebPack版本是[email protected]

我在我的應用程序目錄中運行npm install。我packages.json是:

{ 
    "version": "1.0.0", 
    "name": "unlimitlists", 
    "private": true, 
    "devDependencies": { 
    "@types/node": "^7.0.5", 
    "bower": "^1.7.9", 
    "grunt": "^0.4.5", 
    "grunt-bower-task": "^0.4.0", 
    "grunt-cli": "^0.1.13", 
    "grunt-contrib-clean": "^0.7.0", 
    "grunt-contrib-imagemin": "^1.0.0", 
    "grunt-contrib-less": "~1.2.0", 
    "grunt-typescript": "^0.8.0", 
    "promise": "~7.1.1", 
    "rimraf": "^2.5.2" 
    }, 
    "dependencies": { 
    "angular-hotkeys": "^1.7.0", 
    "babel-core": "^6.17.0", 
    "babel-loader": "^6.2.5", 
    "es6-promise": "^4.0.5", 
    "isomorphic-fetch": "^2.2.1", 
    "jquery": "^3.1.1", 
    "react": "^15.3.2", 
    "react-dom": "^15.3.2", 
    "react-redux": "^4.4.5", 
    "react-router": "^2.8.1", 
    "react-router-redux": "^4.0.6", 
    "redux": "^3.6.0", 
    "redux-actions": "^0.12.0", 
    "redux-thunk": "^2.1.0", 
    "skrollr-menu-typed": "^1.0.4", 
    "skrollr-typed": "^0.6.31" 
    } 
} 

回答

8

嗯,我覺得愚蠢...

我只是做了node --version並將其與價值v0.12.2出來

剛裝V7.5.0和現在一切正常。

+3

謝謝joe!所以我們現在兩個覺得很愚蠢。 – 1ronmat

+1

這也是我的情況。謝謝。 – kta

相關問題