Daniel P. Shannon
Daniel P. Shannon
If you're still looking for folks, I volunteer as tribute.
You're right, most of its functionality doesn't work in the kind of environment I'm describing. But throwing this error rather than gracefully handling it happens to crash the autocomplete module...
I wound up with a fresh error after making that change: ``` ERROR in ./src/development/client.js Module parse failed: ParserHelpers.getModulePath is not a function File was processed with these loaders: *...
Oh wow, thanks! Totally missed that.
I hate to be That Guy, but after struggling for a while to adapt this and `svgo-webpack-loader` to React I finally landed on [`react-svg-loader`](https://github.com/boopathi/react-svg-loader), which seems a better fit for...
@constverum I've made some additional changes to support more of the `stylelint-order` API. They're summarized [in the README](https://github.com/constverum/stylelint-config-rational-order/pull/29/commits/d952b871dd9dae17ee75201fe8378df4be84c763). Happy to tweak it further if you have any thoughts.
You can hammer together a Webpack-idiomatic workaround with a small config tweak and a hacky custom decorator. ```js // webpack.config.js yourConfig.module.rules.push[ { test: /\.cypher$/, type: 'asset/source' // Use raw-loader in...
Absolutely! Thanks for the nudge—it probably wouldn't have occurred to me 🙃 . The glitch with relative paths is worth at least a little more attention. But I'll definitely kick...
I (finally) spent some time digging through Drivine's strategy for injecting Cypher files. It's quite clever, and I'm sure it could be extended for Webpack. I'm curious, though, whether this...
I was considering taking a crack at this, but I'm having trouble finding any prior art on GitHub or in Slack. Any sense of where the in-progress transform was being...