Reputation: 2579
I have been using GruntJs to precompile and post process my SCSS/CSS for my JavaScript projects. After working with AngularDart a bit I have been wondering whether there is something like GruntJs for Dart.
The grunt tasks I am currently using are:
Is there a task runner for Dart that would provide me the same outcome as GruntJs?
Upvotes: 0
Views: 117
Reputation: 59
The dart sass compiler is built into the build tool. Using it is rather straight forward.
I also haven't seen anything like postcss in Dart, it doesn't seem to be a need.
Upvotes: 0
Reputation: 1899
Build runner should auto re-compile Sass using the scss_builder. https://pub.dartlang.org/packages/sass_builder
There isn't really a concept of postcss in the ecosystem at the moment that I know of.
Upvotes: 1