Babel/browserify 抛出"Error while parsing JSON - Unexpected token o"



尝试使用browserify和babel时出现奇怪的错误:

./node_modules/.bin/browserify app/index.js -o bundle.js -t [ babelify --presets [ es2015 react ] ]

给:

SyntaxError: /.../package.json: Error while parsing JSON - Unexpected token o in JSON at position 1 while parsing file: /.../index.js
    at Object.parse (native)
    at ConfigChainBuilder.addConfig (/.../dash/node_modules/babelify/node_modules/babel-core/lib/transformation/file/options/build-config-chain.js:155:65)
    at ConfigChainBuilder.findConfigs (/.../dash/node_modules/babelify/node_modules/babel-core/lib/transformation/file/options/build-config-chain.js:107:30)
    at buildConfigChain (/.../dash/node_modules/babelify/node_modules/babel-core/lib/transformation/file/options/build-config-chain.js:66:13)
    at OptionManager.init (/.../dash/node_modules/babelify/node_modules/babel-core/lib/transformation/file/options/option-manager.js:369:58)
    at File.initOptions (/.../dash/node_modules/babelify/node_modules/babel-core/lib/transformation/file/index.js:223:65)
    at new File

我已经为es2015和react安装了适当的预设,但我不知道为什么它会抛出这个错误。奇怪的是,这个命令在我的生产服务器上工作…

任何想法?

这是包。json解析错误,检查是否存在包。在我的用户目录的Json文件,如果存在,删除它

相关内容

  • 没有找到相关文章

最新更新