Skip to content

Instantly share code, notes, and snippets.

@analyticd
Last active August 29, 2015 14:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save analyticd/c64c46801c464dc0796d to your computer and use it in GitHub Desktop.
Save analyticd/c64c46801c464dc0796d to your computer and use it in GitHub Desktop.
Cappuccino's Jake Commands (Rough) Guide
[cappuccino system scope tasks]
jake clobber - this removes the Build directory and build products
jake debug - this creates the Build directory and its Debug
subdirectory and contents
jake release - this creates the Build directory and its Release
subdirectory and contents
jake all - this is like executing both jake debug and jake release
jake build - this creates the Build directory and its Release
subdirectory and contents
jake clean - leaves Build/Release and Build/Debug, but removes the
other build subdirectories in Build
jake deploy - this doesn't do what I thought it did, use jake debug,
jake release, or jake all instead
[project scope tasks]
jake build - analogous with above but for just this project
jake debug - analogous with above but for just this project
jake release - analogous with above but for just this project
jake run - jake debug plus open Debug's index.html
jake run-release - analogous, but for Release
jake deploy - create the Build/Deployment directory containing
compressed (via press) contents of Release
jake desktop - same as jake release followed by building
Build/Desktop to be run under cappuccino's
nativehost facility
jake run-desktop - run the product built with jake desktop task
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment