gat-tools
v0.0.17
Published
GAT CLI tools
Readme
gat
GAT CLI tools.
Installation
As a CLI
npm install -g gat-tools
# or
npm install -g @ftl-tools/gatThen run:
gatAs a library
npm install gat-tools
# or
npm install @ftl-tools/gatimport { greet } from "gat-tools";
// or
import { greet } from "@ftl-tools/gat";CLI Usage
Usage: gat [options]
GAT CLI tools
Options:
-v, --version output the current version
-h, --help display help for commandSDK
greet()
Prints a greeting to stdout.
import { greet } from "gat-tools";
greet(); // Hello WorldPublishing
Maintainers can publish a new release with:
npm run publishThis will:
- Build the project
- Bump the patch version in
package.json - Commit, tag (
v{version}), and push to git - Publish to npm as both
gat-toolsand@ftl-tools/gat
License
MIT
