@smartsheet-bridge/extensionrc-legacy
v1.0.2
Published
Configuration file for a legacy extension.
Downloads
4
Keywords
Readme
@smartsheet-bridge/extensionrc-legacy
Shareable configuration file for legacy extensions using Bridge by Smartsheet tooling.
Usage
Why do I need this?
If you developed an extension for the Bridge by Smartsheet platform using a legacy tool called converse-cli
but are using, or want to use, the internally supported @smartsheet-bridge/extension-scripts
tool going forward, then you can use this sharable configuration package to get started out of the box.
How do I use this?
- Install it as a
devDependency
npm install @smartsheet-bridge/extensionrc-legacy --save-dev
- Extend it in your package.json or in a separate configuration file.
// package.json
{
//...
"extension": {
"extends": "@smartsheet-bridge/extensionrc-legacy"
}
}
What is included?
This package exports a configuration object that can be extended and read by @smartsheet-bridge/extension-scripts
to help development of legacy Bridge by Smartsheet extensions also known as plugins. It exports the following object.
{
build: {
src: './',
exclude: [
'**/.*',
'**/*.log',
'**/plugin.json',
'**/node_modules/**',
'**/test/**',
],
},
upload: { specFile: 'plugin.json' },
}