Module build failed
Closed this issue · 2 comments
mqklin commented
Just installed it and it threw Module build failed: ReferenceError: Unknown plugin "captains-log" specified in "base" at 0, attempted to resolve relative to "/Users/mqklin/..."
My loader (from webpack.config.js
):
{
loader: 'babel-loader',
options: {
presets: [
['env', {targets: {browsers: ['last 2 versions', 'ie >= 10']}}],
'stage-2',
'react',
],
plugins: [
'babel-plugin-captains-log',
'transform-decorators-legacy',
'transform-react-jsx-self',
'transform-react-jsx-source',
'styled-components',
'transform-flow-strip-types',
],
},
},
I can create repro if it's necessary.
kwelch commented
Thanks. This was an issue with a bad deployment. The latest published version should resolve this issue.
mqklin commented
Thank you!