Skip to content

Commit

Permalink
fix(webex): corrections
Browse files Browse the repository at this point in the history
  • Loading branch information
Kesari3008 committed Oct 17, 2023
1 parent 2b49822 commit e1aa2c3
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ module.exports = function injectPackageVersion() {
*/
CallExpression(path) {
if (t.isMemberExpression(path.get('callee'))) {
console.log('pkesari_CallExpression path');
if (
path.node.callee.object.name === 'WebexPlugin' &&
path.node.callee.property.name === 'extend'
Expand Down Expand Up @@ -51,7 +50,7 @@ module.exports = function injectPackageVersion() {
*/
Identifier(path) {
if (path.node.name === 'PACKAGE_VERSION') {
console.log('pkesari_replacing version in path: ', path);
console.log('pkesari_replacing version in path');
console.log('pkesari_version as per this file: ', version);
path.replaceWithSourceString(`\`${version}\``);
}
Expand Down

0 comments on commit e1aa2c3

Please sign in to comment.