Hanorine
Hanorine
by default tslint.json doesn't have the `rules` property. Adding it solved it for me. ``` { "extends": ["tslint:recommended", "tslint-react", "tslint-config-prettier"], "rules": { "interface-name": false, "no-empty-interface": false, "ordered-imports": false, "interface-over-type-literal": false...
What version of `sass-loader` do you have installed @FelipeZNascimento ? If you have anything above 10.2.1 it won't work due to storybook working with webpack 4. I came across similar...
If anyone is still interested in getting an upgrade to v6.5.0 i have managed to work it all out and you can check it out in my repo [here](https://github.com/JaysQubeXon/auth-client )....
I am having the same issue, console errors with: ``` Uncaught TypeError: Cannot read properties of null (reading 'props') at o.getChildren (marker_dispatcher.js:10:1) at o._getState (google_map_markers.js:100:1) at new o (google_map_markers.js:248:1) at...
Anyone else come across this issue and lack of maintainers here, I would suggest you look at [react-google-maps/api](https://github.com/JustFly1984/react-google-maps-api) as an alternative.
Would love to see this merged in too. Hoping this package is still maintained. +1
I would also like to stress the need to add support for rollup v3. Is this package being maintained by anyone? Need to know so I can make decisions. If...
Looks like @ironkinoko/rollup-plugin-styles is a fork of this repo with rollup v3 support. https://www.npmjs.com/package/@ironkinoko/rollup-plugin-styles?activeTab=explore ``` "peerDependencies": { "rollup": "^2.63.0 || 3.x" }, ```
I recently moved my solution to leverage `"@dougalg/rollup-plugin-postcss"` ```js import postcss from '@dougalg/rollup-plugin-postcss'; // in rollup config plugin section: postcss({ extract: false, modules: true, use: ['sass'], }) ```
Would love to get this support merged in as soon as possible. Thanks.