Is this project abandoned?
unindented opened this issue · 3 comments
unindented commented
No updates for 5 months... @rcs please merge pending pull requests.
danielberndt commented
Yes. Seems fairly abandoned unfortunately.
I just updated the project to be compatible with react 0.12.
For the time being you can reference it like this from your package.json
"jsxhint-loader": "git://github.com/danielberndt/jsxhint-loader.git#d3f8990e82aa37a64eb33af3bbad633a6fb46813"
and use it like this in your webpack.config.js
module: {
...
preLoaders: [
{test: /\.jsx?/, exclude: __dirname + '/node_modules',loader: 'jsxhint-loader?insertPragma=React.DOM'}
],
loaders: [
{test: /\.jsx?$/, loader: 'jsx-loader?harmony&insertPragma=React.DOM'}
]
}
danielberndt commented
Alternatively you could just do:
{test: /\.jsx?$/, exclude: __dirname + '/node_modules',loader: 'jshint-loader!jsx-loader?insertPragma=React.DOM'}
rcs commented
Unfortunately it was, unintentionally, as it still matters to me.
I've merged outstanding pull requests, bumped version to 0.2.0, and pushed to NPM.
I believe I've got notifications for github sorted out now so this situation shouldn't happen again.