update_version()
# XXX: Meh. Maybe this should become python code.
local('cat $(coke source_list | grep -v vendor | sed "s/^/var\//") > %(app_bundle)s' % env)
- local('%(minify_cmd)s %(app_bundle)s > %(app_bundle_min)s' % env)
+ # Run the minify command, adding npm's bin directory
+ with path('node_modules/.bin'):
+ local('%(minify_cmd)s %(app_bundle)s > %(app_bundle_min)s' % env)