Last active
August 29, 2015 14:14
-
-
Save analyticd/c64c46801c464dc0796d to your computer and use it in GitHub Desktop.
Cappuccino's Jake Commands (Rough) Guide
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[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