Skip to main content

Command line usage

The way that you interact with the build tools is through the command line. Even if you've set up scripts in your package.json file those script commands call the build tool actions through a command line call.

The pattern for a command line call is:

aptuitiv-build <action> [parameters]

Getting help

You can get help by using --help or calling help.

aptuitiv-build --help

or

aptuitiv-build help

You can also use --help with any of the actions to get help with them.

aptuitiv-build css --help

Changing the root directory

If you're not calling the script from the base directory of your project then you must pass the --root argument so that the correct folders paths are used.

aptuitiv-build pull-template --root path/to/my/project/root

Or you can do a relative path to the root from the current directory.

aptuitiv-build pull-template --root ../../

Actions