diff --git a/.lintstagedrc b/.lintstagedrc index 89284ac..b03e7c9 100644 --- a/.lintstagedrc +++ b/.lintstagedrc @@ -1,6 +1,6 @@ { "linters": { - "src/**/*.{js}": [ + "src/**/*.js": [ "prettier --write", "eslint --fix", "git add" diff --git a/src/index.js b/src/index.js index 1d5f62f..85e1ed0 100644 --- a/src/index.js +++ b/src/index.js @@ -1,8 +1,9 @@ // common import Lbry from 'lbry'; +import Lbryapi from 'lbryapi'; import Lbryuri from 'lbryuri'; -export { Lbry, Lbryuri }; +export { Lbry, Lbryapi, Lbryuri }; // actions export { doOpenModal, doCloseModal, doShowSnackBar } from 'redux/actions/app';