There are currently no pipelines.
To run a merge request pipeline, the jobs in the CI/CD configuration file must be configured to run in merge request pipelines.
Created by: christopher-francisco
For cases where you're not able to completely remove node-sass
, causing sass-loader
to pick it up, you can now explicitly specify you want to use Dart Sass through USE_DART_SASS=true
env variable. See #9628 for the complete use case
Manually tested it by doing the following
yarn create-react-app my-app
@use
directive (only supported by Dart Sass)sass
dependnecyyarn start
. Comiplation succeeded
node-sass
dependency (we now have both)yarn start
. Compilation failed
USE_DART_SASS=true yarn start
. Comiplation succeeded
You can see both sass
and node-sass
installed at the bottom right corner. App started with USE_DART_SASS=true yarn start
Closes #9629
To run a merge request pipeline, the jobs in the CI/CD configuration file must be configured to run in merge request pipelines.