Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Option

Description

Command line

Example of command line

-d | --skip-dependenciesThis option allows you to download an extension without any dependencies. CAST only recommends using this option if you understand the implication - an extension will not function correctly without its dependencies.

ExtendCli.exe download -d <extension id>

ExtendCli.exe download --skip-dependencies <extension id>

ExtendCli.exe download -d com.castsoftware.reactjs
-s | --latest-stable <true|false>This option allows you to configure whether to download the most recent stable release of an extension , for example (-LTS or funcrel and all dependencies).  The default behaviour (i.e. when the option is omitted) the action is set to true and the latest-stable release will be downloaded. Explicitly add the option and set it to false to ensure that the latest stable release is not downloaded.

ExtendCli.exe download -s <extension s false <extension id>

ExtendCli.exe download --latest-stable false <extension id>

ExtendCli.exe download -s coms false com.castsoftware.reactjs
-a | --absolute-latestThis option allows you to download the most recent release of an extension including alpha and beta releases and all dependencies.

ExtendCli.exe download -a <extension id>

ExtendCli.exe download --absolute-latest <extension id>

ExtendCli.exe download -a com.castsoftware.reactjs
-f | --latest-funcrelThis option allows you to download the most recent funcrel release of an extension and all dependencies.

ExtendCli.exe download -f <extension id>

ExtendCli.exe download --latest-funcrel <extension id>

ExtendCli.exe download -f com.castsoftware.reactjs
-l | --latest-ltsThis option allows you to download the most recent LTS release of an extension and all dependencies.

ExtendCli.exe download -l <extension id>

ExtendCli.exe download --latest-lts <extension id>

ExtendCli.exe download -l com.castsoftware.reactjs
-v | --versionThis option allows you to download a specific release of an extension and all dependencies.

ExtendCli.exe download -v <release><extension id>

ExtendCli.exe download --version <release><extension id>

ExtendCli.exe download -v 1.1.4-funcrel com.castsoftware.reactjs

...