sass-extract-loader
sass-extract-loader copied to clipboard
Webpack loader for https://github.com/jgranstrom/sass-extract
Hello, this PR adds an option named `implementation` to allow the selection of dart sass when using [email protected]
Hello, I have a problem with Jest, when I run a test I have this error: Cannot find module 'sass-extract-loader?{"plugins": ["sass-extract-js"]}!./theme/variables.scss' from 'index.tsx' My code : ``` const theme =...
BREAKING CHANGE: drop support for webpack 1-3 - upgrade to loader-utils - add support for webpack 4 & webpack 5 - webpack is now using `Set` instead of `Array` therefore...
`sass` package becomes the new official implementation. It would be great to support it. It has been supported by `sass-loader`.
In my case, loader works fine with Webpack 4, but throws unmet peer dep. Console output using command `npm list -depth=0`: ```bash ├── ... ├── UNMET PEER DEPENDENCY [email protected] ```...
Just started playing around with this, seems pretty cool! One problem I ran into however, as the title states: file: _variables.scss ``` @import "~some-vendor/scss/_vars.scss"; $foo-bar: 5; ``` file: styles.js ```...
**runtime.scss** (SCSS): ``` @import "../../../node_modules/bulma/sass/utilities/initial-variables.sass"; // (SASS) $breakpoints: ( 'mobile': 0, 'tablet': $tablet, 'desktop': $desktop, 'widescreen': $widescreen, 'fullhd': $fullhd ); $breakpointOrder: ( 'mobile', 'tablet', 'desktop', 'widescreen', 'fullhd' ); ``` **sass-variables.js**...
Hi. I keep having the issue when trying to do initial configuration on webpack, rather inlining in a JSX file. I have the following on my webpack config to target...
I'd like for sass-extract-loader to be able to consume the same paths `sass-loader` can. I have `sass-loader` configured in a way that it has custom `includePaths` defined and it has...