We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Download latest JSMake package from here
Extract JSMake in a place you can reach from the commandline
Create a file named "build.js" in your project folder
Add the following code to build.js
task('default', function () { jsmake.Sys.log('Hello, World!'); });
Save file
Open a commandline and go to the directory containing build.js file you just created
Run the following command
path/to/jsmake/jsmake
The build should start and 'Hello, World!' should be written to the console