Compilation Support [Enhancement]
Opened this issue · 2 comments
A possible addition to this library could be a dart:io script that compiles nw applications (eg. 'dart2js --minify', zipping into nw.exe/nw). This wouldn't be practical for a build.dart script, but the nw-app developer may want something like this for a 'publish.dart' script. The user could specify where they've placed the downloaded nw executable, or we could fetch the latest version from the git repo.
Hi @darkkiero, thanks for the feedback!
I've been thinking about a way to automate the build and packaging of node-webkit apps for a while, but I couldn't decide yet what would be the best solution. For now, my idea is to provide a bunch of tasks (probably using the grinder library), that the user can easily use to build his own script, according to his needs. I think this can be a better approach than trying to make a single script that cover all the process, or relying in an over-complicated build system (like Grunt). What do you think?
That makes more sense.