Npm package to update the rte version of a webpackage
npm install cubx-webpackage-rte-update
Module for updating the rte version references of the current webpackage.
cubx-webpackage-rte-update -p -V
`$3
`javascript
var webpackagePath = 'path/to/webpackage';
var newRteVersion = '1.0.0';var RteUpdater = require('cubx-webpackage-rte-update');
var rteUpdater = new RteUpdater(webpackagePath);
rteUpdater.updateRteInWebpackage(newRteVersion);
``