Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Webpack babel 6 ES6 decorators

I've got a project written in ES6 with webpack as my bundler. Most of the transpiling works fine, but when I try to include decorators anywhere, I get this error:

Decorators are not supported yet in 6.x pending proposal update. 

I've looked over the babel issue tracker, and haven't been able to find anything on it there, so I'm assuming I'm using it wrong. My webpack config (the relevant bits):

loaders: [   {     loader: 'babel',     exclude: /node_modules/,     include: path.join(__dirname, 'src'),     test: /\.jsx?$/,     query: {       plugins: ['transform-runtime'],       presets: ['es2015', 'stage-0', 'react']     }   } ] 

I have no trouble with anything else, arrow functions, destructuring all work fine, this is the only thing that doesn't work.

I know I could always downgrade to babel 5.8 where I had it working a while ago, but if there's any way to get this working in the current version (v6.2.0), it would help.

like image 725
Pavlin Avatar asked Nov 19 '15 10:11

Pavlin


2 Answers

This Babel plugin worked for me:

https://github.com/loganfsmyth/babel-plugin-transform-decorators-legacy

npm i --save-dev babel-plugin-transform-decorators-legacy 

.babelrc

{   "presets": ["es2015", "stage-0", "react"],   "plugins": [     ["transform-decorators-legacy"],     // ...   ] } 

or

Webpack

{   test: /\.jsx?$/,   loader: 'babel',   query: {     cacheDirectory: true,     plugins: ['transform-decorators-legacy' ],     presets: ['es2015', 'stage-0', 'react']   } } 

React Native

With react-native you must use the babel-preset-react-native-stage-0 plugin instead.

npm i --save babel-preset-react-native-stage-0 

.babelrc

{   "presets": ["react-native-stage-0/decorator-support"] } 

Please see this question and answer for a complete explanation.

like image 62
Kyle Finley Avatar answered Oct 02 '22 17:10

Kyle Finley


After spending 5 minutes on the babeljs slack webchat, I found out that decorators are broken in the current version of babel (v6.2). The only solution seems to be to downgrade to 5.8 at this time.

It would also seem they moved their issue tracker from github to https://phabricator.babeljs.io

I write all this down, since after hours of searching I have found the current documentation very poor and lacking.

like image 23
Pavlin Avatar answered Oct 02 '22 17:10

Pavlin