2017-02-17 1 views
5
난 그냥 한 컴퓨터에서 다른 컴퓨터로 내 프로젝트를 이동하고,

나는 다음과 같은 오류 얻을 webpack --watch 실행하면웹팩 구문 에러 : 예기치 않은 토큰 =>

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에 동일한 설정을 발행물. 무엇이 이것을 일으킬 수 있습니까?

내 웹팩 버전은 내 응용 프로그램 디렉토리에 npm install을 실행했습니다 [email protected]

입니다. 내 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

관련 문제