Skip to content

Commit d9a0e99

Browse files
author
Bernie Zang
committed
fix: static method errors
1 parent 114a1bf commit d9a0e99

File tree

7 files changed

+125
-125
lines changed

7 files changed

+125
-125
lines changed

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,6 @@
206206
"@ciscospark/test-helper-test-users",
207207
"eslint",
208208
"eslint-config",
209-
"eslint-config-airbnb",
210209
"eslint-plugin-babel",
211210
"eslint-plugin-import",
212211
"eslint-plugin-jsx-a11y",

packages/node_modules/@ciscospark/react-redux-spark-metrics/src/inject-metrics.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/node_modules/@ciscospark/widget-meet/src/container.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/node_modules/@ciscospark/widget-message/src/container.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/node_modules/@ciscospark/widget-recents/src/container.js

Lines changed: 61 additions & 61 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/node_modules/@ciscospark/widget-space/src/container.js

Lines changed: 57 additions & 56 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

scripts/utils/package.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ const {statSync, readdirSync} = require('fs');
33

44
const {execSync} = require('./exec');
55

6-
76
/**
87
* Get single packages full path
98
* @param {string} pkg specific package name or full path
@@ -41,7 +40,7 @@ function runInPackage({
4140
pkgPath
4241
}) {
4342
const outputPkgPath = getPackage(pkgName || pkgPath);
44-
if (pkgPath) {
43+
if (outputPkgPath) {
4544
try {
4645
console.info(`${commandName} ${pkgName} ...`);
4746
const command = constructCommand(outputPkgPath);
@@ -73,6 +72,7 @@ function getAllPackagePaths(packagesDir = 'packages/node_modules/@ciscospark') {
7372
}, []);
7473
}
7574

75+
7676
function getAllPackages(omitPrivate) {
7777
let pkgPaths = getAllPackagePaths();
7878
if (omitPrivate) {

0 commit comments

Comments
 (0)