0

I'm new to Dart and trying to understand the JavaScript compilation process. After doing to reading, I can't seem to find a way to automatically build an entire project of Dart files at once. Am I missing something?

Thanks

Günter Zöchbauer
  • 623,577
  • 216
  • 2,003
  • 1,567
Antiga
  • 2,264
  • 1
  • 20
  • 28

1 Answers1

0

If you run the generate javascript command on any dart project with a main method, all code required by the project in question is automatically compiled to the javascript output file.

ringstaff
  • 2,331
  • 1
  • 16
  • 25