Skip to content

Commit 12fc8cc

Browse files
committed
Export all classes in main module
1 parent eb7b157 commit 12fc8cc

2 files changed

Lines changed: 8 additions & 6 deletions

File tree

package.json

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "sync-github-forks-cli",
3-
"version": "0.1.11",
3+
"version": "0.1.12",
44
"description": "Keeps github forks up to date using node, the github api and git",
5-
"main": "dist/application.js",
5+
"main": "dist/index.js",
66
"bin": {
77
"sync-github-forks": "dist/cli.js"
88
},
@@ -12,10 +12,7 @@
1212
"lint": "tslint -c ./tslint.json src/**"
1313
},
1414
"files": [
15-
"dist",
16-
"src",
17-
"tsconfig.json",
18-
"tslint.json"
15+
"dist"
1916
],
2017
"repository": {
2118
"type": "git",

src/index.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
export * from "./application";
2+
export * from "./gitHubService";
3+
export * from "./gitService";
4+
export { Options } from "./options";
5+
export * from "./logger";

0 commit comments

Comments
 (0)