javascript - Babel giving Unexpted token while building - Stack Overflow

I am trying to build my react library , and npm build gives this error . what is causing this error and

I am trying to build my react library , and npm build gives this error . what is causing this error and how to fix it ?

    src/lib/CircularProfiles.js -> dist/CircularProfiles.js
    SyntaxError: src/lib/Github.js: Unexpected token (14:10)
      12 | class GithubProfileBar extends Component {
      13 |
    > 14 |     state = {
         |           ^
      15 |         totalRepos: 0,
      16 |         totalStars: 0,
      17 |     }

npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! [email protected] build: `rm -rf dist && NODE_ENV=production babel src/lib --out-dir dist --copy-files --ignore __tests__,spec.js,test.js,__snapshots__`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the [email protected] build script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.

npm ERR! A plete log of this run can be found in:
npm ERR!     /home/natesh/.npm/_logs/2018-12-26T03_51_21_931Z-debug.log

My .babelrc file :

{
    "presets": [
        "es2015",
        "react"
    ]
}

I am trying to build my react library , and npm build gives this error . what is causing this error and how to fix it ?

    src/lib/CircularProfiles.js -> dist/CircularProfiles.js
    SyntaxError: src/lib/Github.js: Unexpected token (14:10)
      12 | class GithubProfileBar extends Component {
      13 |
    > 14 |     state = {
         |           ^
      15 |         totalRepos: 0,
      16 |         totalStars: 0,
      17 |     }

npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! [email protected] build: `rm -rf dist && NODE_ENV=production babel src/lib --out-dir dist --copy-files --ignore __tests__,spec.js,test.js,__snapshots__`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the [email protected] build script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.

npm ERR! A plete log of this run can be found in:
npm ERR!     /home/natesh/.npm/_logs/2018-12-26T03_51_21_931Z-debug.log

My .babelrc file :

{
    "presets": [
        "es2015",
        "react"
    ]
}
Share Improve this question edited Dec 29, 2018 at 3:15 Natesh bhat asked Dec 26, 2018 at 3:56 Natesh bhatNatesh bhat 13.3k13 gold badges93 silver badges133 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 11

I found that the error is because of older version of babel which doesn't handle newer versions of react code.

Here's the fix :

My problem was of older babel version fixed easily by installing:

npm i -D @babel/plugin-proposal-class-properties \
  @babel/preset-react \
  @babel/preset-env \
  @babel/core \
  @babel/plugin-transform-runtime \

In .babelrc file :

{
   "presets": [
       "@babel/react" , 
       "@babel/env" , 
   ],
   "plugins": [
       "@babel/plugin-proposal-class-properties"
   ]
}

Now babel built it successfully after this.

Make sure you are not using both v7 and v6 branch og babel. The "@babel/core" is the 7x branch and the "babel/core" is the 6x branch, you should not have both installed at once!

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743614342a4478757.html

相关推荐

  • javascript - Babel giving Unexpted token while building - Stack Overflow

    I am trying to build my react library , and npm build gives this error . what is causing this error and

    1天前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信