Babel 7로 업그레이드 : null의 '바인딩'속성을 읽을 수 없습니다.


118

다음 명령을 실행 하여 Babel 7 (6에서)로 업그레이드했습니다 .

npm remove babel-cli
npm install --save-dev @babel/cli @babel/core @babel/preset-env

.babelrc파일 은 다음과 같습니다 .

{ "presets": ["env"] }

그런 다음 실행했습니다.

babel js/src --out-dir js/dist

결과는 다음과 같습니다.

TypeError: Cannot read property 'bindings' of null
    at Scope.moveBindingTo (/xyz/node_modules/@babel/traverse/lib/scope/index.js:867:13)
    at BlockScoping.updateScopeInfo (/xyz/node_modules/babel-plugin-transform-es2015-block-scoping/lib/index.js:364:17)
    at BlockScoping.run (/xyz/node_modules/babel-plugin-transform-es2015-block-scoping/lib/index.js:330:12)
    at PluginPass.BlockStatementSwitchStatementProgram (/xyz/node_modules/babel-plugin-transform-es2015-block-scoping/lib/index.js:70:24)
    at newFn (/xyz/node_modules/@babel/traverse/lib/visitors.js:193:21)
    at NodePath._call (/xyz/node_modules/@babel/traverse/lib/path/context.js:53:20)
    at NodePath.call (/xyz/node_modules/@babel/traverse/lib/path/context.js:40:17)
    at NodePath.visit (/xyz/node_modules/@babel/traverse/lib/path/context.js:88:12)
    at TraversalContext.visitQueue (/xyz/node_modules/@babel/traverse/lib/context.js:118:16)
    at TraversalContext.visitSingle (/xyz/node_modules/@babel/traverse/lib/context.js:90:19)

내가 뭘 잘못 했어?

답변:


307

당신의에서 .babelrc파일 변경

{ "presets": ["env"] } 

{ "presets": ["@babel/preset-env"] }

(아직 설치하지 않은 경우 해당 패키지를 설치하십시오).

당신에 .babelrc여전히 패키지를 참조하고 babel-preset-env(6.x에서입니다), 당신은 참조 할 @babel/preset-env(7.x의에 대한 인) 대신.

https://github.com/babel/babel/issues/6186#issuecomment-366556833

참고 :webpack.config.js 해당 사항이있는 경우 에도 변경해야 합니다.

다음은 사전 설정을 변경해야하는 샘플 웹팩 구성 섹션입니다.

use: {
  loader: 'babel-loader',
  options: {
    // Here you should change 'env' to '@babel/preset-env'
    presets: ['@babel/preset-env'],
  },
},

8
이 변경 사항이있는 webpack.config.js경우 에도 변경해야 합니다.
hawkeye
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.