Tobias Marschall
Tobias Marschall

Reputation: 2579

Is there anything like GruntJs for Dart?

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

Answers (2)

Serverplumber
Serverplumber

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

Ted Sander
Ted Sander

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

Related Questions