Skip to content

Commit

Permalink
fix: manually create index.js to match index.js in root dir
Browse files Browse the repository at this point in the history
  • Loading branch information
simon-scherzinger committed Sep 4, 2017
1 parent 85e926a commit 1a49999
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
11 changes: 11 additions & 0 deletions index.js
@@ -0,0 +1,11 @@
const Apps = require("./lib/Apps");
const Accounts = require("./lib/Accounts");
const DataManager = require("./lib/DataManager");
const PublicAPI = require("./lib/PublicAPI");
const Session = require("./lib/Session");

exports.Apps = Apps.default;
exports.Accounts = Accounts.default;
exports.DataManager = DataManager.default;
exports.PublicAPI = PublicAPI.default;
exports.Session = Session.default;
1 change: 0 additions & 1 deletion tsconfig.json
Expand Up @@ -8,7 +8,6 @@
"removeComments": false
},
"include": [
"index.ts",
"src/**/*.ts"
]
}

0 comments on commit 1a49999

Please sign in to comment.