You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Perform the following improvements/refactors to the current SassTypingsPlugin
Move SassTypingsPlugin to a separate plugin and rename to SassPlugin
The new SassPlugin should allow configuring the Sass transpiler (libsass vs dart-sass)
The new SassPlugin should output the transpiled CSS as .css files in the output directories
The new SassPlugin should provide a hook to register a callback for processing CSS as a string or JSON
The new SassPlugin should inject a pitching loading into an available Webpack config to map TS and JS imports of foo.scss and foo.sass to foo.css
Reasoning
We need to be able to perform custom processing of the output CSS and generate some custom files. However, we want to generally use Webpack loaders to process styles. This will reduce expensive duplication by only running Sass once.
The text was updated successfully, but these errors were encountered:
Deliverables
Perform the following improvements/refactors to the current
SassTypingsPlugin
SassPlugin
.css
files in the output directoriesfoo.scss
andfoo.sass
tofoo.css
Reasoning
We need to be able to perform custom processing of the output CSS and generate some custom files. However, we want to generally use Webpack loaders to process styles. This will reduce expensive duplication by only running Sass once.
The text was updated successfully, but these errors were encountered: