尝试转译时发生Javascript babel“ TypeError:无法读取null的属性'bindings'”

时间:2019-05-15 21:50:47

标签: javascript gulp phpstorm babel

我是一位拼命尝试学习javascript的学生。

据我了解,使用PhpStorm,当我修改javascript源文件时,我有这个文件监视程序( babel ),它将做一些魔术并将这些文件稍微转换到另一个文件夹中(dist),以便 Gulp 可以“编译”所有内容,并可以运行该应用程序。但是每当我修改文件而不是发生魔术时,我都有一个“ TypeError:无法读取null的属性'bindings'” ,而且我不明白为什么。

我尝试过的事情:

  • 我的老师(他有点无用)告诉我修改配置,以便它是babel.cmd而不是babel,因为我在Windows上,但这没用。

  • 目前,我几乎已卸载并重新安装了所有组件,并且所有组件均已达到我认为的最新版本。

  • 我试图将.babelrc文件中的预设设置为“ @ babel / preset-env”,但这也不起作用。

我的.babelrc文件

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

我的package.json文件

{
  "name": "battleship",
  "version": "0.0.1",
  "devDependencies": {
    "@babel/cli": "^7.4.4",
    "@babel/core": "^7.4.4",
    "@babel/preset-env": "^7.4.4",
    "babel-jest": "^24.8.0",
    "babel-loader": "^7.1.5",
    "babel-preset-env": "1.6.1",
    "gulp": "^4.0.2",
    "jest": "^24.8.0",
    "tar": "^4.4.8"
  },
  "scripts": {
    "test": "jest"
  },
  "dependencies": {
    "babel-core": "^6.26.3",
    "babel-polyfill": "6.26.0",
    "browserify": "16.1.1",
    "core-js": "^3.0.1",
    "fstream": "^1.0.12",
    "glob": "7.1.2",
    "md5": "2.2.1",
    "npm": "^6.9.0",
    "vinyl-source-stream": "2.0.0",
    "webpack": "^2.7.0"
  },
  "jest": {
    "browser": true,
    "modulePathIgnorePatterns": [
      "<rootDir>/js/__mocks__"
    ],
    "setupFiles": [
      "./setup-jest.js"
    ],
    "transform": {
      "^.+\\.jsx?$": "babel-jest"
    }
  }
}

错误的详细信息

我不太了解这个“绑定”属性的含义以及我应该对此进行的更改,我没有在任何称为绑定的属性中进行编码。

cmd.exe /D /C call C:\Users\lande\Documents\js_Battleship\node_modules\.bin\babel.cmd js\controllers\StatController.js --out-dir dist --source-maps --presets env
TypeError: Cannot read property 'bindings' of null
    at Scope.moveBindingTo (C:\Users\lande\Documents\js_Battleship\node_modules\@babel\traverse\lib\scope\index.js:864:13)
    at convertBlockScopedToVar (C:\Users\lande\Documents\js_Battleship\node_modules\babel-plugin-transform-es2015-block-scoping\lib\index.js:139:13)
    at PluginPass.VariableDeclaration (C:\Users\lande\Documents\js_Battleship\node_modules\babel-plugin-transform-es2015-block-scoping\lib\index.js:26:9)
    at newFn (C:\Users\lande\Documents\js_Battleship\node_modules\@babel\traverse\lib\visitors.js:193:21)
    at NodePath._call (C:\Users\lande\Documents\js_Battleship\node_modules\@babel\traverse\lib\path\context.js:53:20)
    at NodePath.call (C:\Users\lande\Documents\js_Battleship\node_modules\@babel\traverse\lib\path\context.js:40:17)
    at NodePath.visit (C:\Users\lande\Documents\js_Battleship\node_modules\@babel\traverse\lib\path\context.js:88:12)
    at TraversalContext.visitQueue (C:\Users\lande\Documents\js_Battleship\node_modules\@babel\traverse\lib\context.js:118:16)
    at TraversalContext.visitQueue (C:\Users\lande\Documents\js_Battleship\node_modules\@babel\traverse\lib\context.js:124:21)
    at TraversalContext.visitQueue (C:\Users\lande\Documents\js_Battleship\node_modules\@babel\traverse\lib\context.js:124:21)

Process finished with exit code 1

1 个答案:

答案 0 :(得分:1)

这是由于6和7之间的babel依赖项不匹配引起的。您当前似乎都已安装。

尝试从babel-core中的依赖项中删除babel-polyfillbabel-preset-envpackage.json

如果您需要babel-polyfill,则应该安装版本7软件包,该软件包已重命名为@babel/polyfill