Skip to content

Latest commit

 

History

History
 
 

plugins

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Builder.io plugins

For step-by-step instructions on using and making plugins with Builder, see the official documentation, starting with Intro to Plugins.

Example plugins:

Plugin Testing/Deployment Steps

Our plugins are hosted on npm under package @builder.io . You can check this url to see details of any plugin https://www.npmjs.com/package/@builder.io/[plugin-name]

  • Test your changes by running the plugin locally and raise a PR Documentation
  • Once the PR is reviewed or meanwhile, make a dev release for testing

Dev Release:

  • cd to the root directory of the plugin you wish to deploy. for e.g cd plugins/smartling
  • Ensure node version is 18.0+
  • Remove node_modules and dist from utils. rm -rf node_modules/ dist/
  • Re-install all modules in utils. npm i
  • npm run release:dev
  • Test your plugin in builder. Navigate to Space settings. Edit the Plugins in Integrations Section. Add the dev release plugin version (@builder.io/[email protected]).

Once the changes look fine, go ahead for patch/prod release

Patch Release: