We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb7b157 commit 12fc8ccCopy full SHA for 12fc8cc
2 files changed
package.json
@@ -1,8 +1,8 @@
1
{
2
"name": "sync-github-forks-cli",
3
- "version": "0.1.11",
+ "version": "0.1.12",
4
"description": "Keeps github forks up to date using node, the github api and git",
5
- "main": "dist/application.js",
+ "main": "dist/index.js",
6
"bin": {
7
"sync-github-forks": "dist/cli.js"
8
},
@@ -12,10 +12,7 @@
12
"lint": "tslint -c ./tslint.json src/**"
13
14
"files": [
15
- "dist",
16
- "src",
17
- "tsconfig.json",
18
- "tslint.json"
+ "dist"
19
],
20
"repository": {
21
"type": "git",
src/index.ts
@@ -0,0 +1,5 @@
+export * from "./application";
+export * from "./gitHubService";
+export * from "./gitService";
+export { Options } from "./options";
+export * from "./logger";
0 commit comments