How to generate folder 'out' when using Dart Web UI ?

When using Dart I am unable to generate the folder named 'out'.
What I am trying to do is setup background compilation in Webstorm like it is mentioned in this tutorial
http://www.dartlang.org/docs/tutorials/web-ui/#set-up


Ramesh

0
1 comment
Avatar
Permanently deleted user

Solution : From inside the project folder in terminal, use command line to build like this

> dart --package-root=packages/ packages/web_ui/dwc.dart --out web/out/ web/yourapp.html
http://www.dartlang.org/articles/web-ui/tools.html
hope this helps someone


Ramesh
0

Please sign in to leave a comment.