diff --git a/index.ts b/index.ts new file mode 100644 index 0000000..e6918d5 --- /dev/null +++ b/index.ts @@ -0,0 +1 @@ +export * from './src' \ No newline at end of file diff --git a/package.json b/package.json index 0c71986..f1f0dd2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "migration-script-runner", - "version": "0.1.7", + "version": "0.1.8", "description": "Migration Script Runner", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/tsconfig.json b/tsconfig.json index 5e56118..5d9be2b 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -20,6 +20,6 @@ "skipLibCheck": true, // "noEmit": true // disables }, - "include": ["src/**/*", "test/**/*"], + "include": ["index.ts", "src/**/*", "test/**/*"], "exclude": ["dist", "node_modules"] }