@smartsheet-bridge/extension-scripts
v1.1.0
Published
A command line interface (CLI) tool for assisting the development and maintenance of [Bridge by Smartsheet](https://www.smartsheet.com/platform/bridge) extensions.
Downloads
19
Keywords
Readme
@smartsheet-bridge/extension-scripts
A command line interface (CLI) tool for assisting the development and maintenance of Bridge by Smartsheet extensions.
Please refer to Bridge by Smartsheet's documentation for how to build an extension.
Installation
yarn
yarn add -D @smartsheet-bridge/extension-scripts
npm
npm install -D @smartsheet-bridge/extension-scripts
Setup
This tool is designed to be installed as a devDependency and interacted with through npm
or yarn
scripts.
{
// ...
"scripts": {
"account": "extension-scripts account",
"build": "extension-scripts build",
"upload": "extension-scripts upload",
"deploy": "extension-scripts deploy",
"revoke": "extension-scripts revoke",
"logs": "extension-scripts logs",
"executions": "extension-scripts executions"
}
}
It can also be ran directly in the terminal.
./node_module/.bin/extension-scripts <command> [options]
Usage
Please see the Bridge by Smartsheet documentation for usage.