diff --git a/package.json b/package.json index e4b7a0e..3d7b85b 100644 --- a/package.json +++ b/package.json @@ -16,8 +16,7 @@ "main": "./dist/index.js", "types": "./dist/index.d.ts", "files": [ - "dist", - "templates" + "dist" ], "scripts": { "build": "rimraf dist && tsc", diff --git a/src/template.ts b/src/template.ts index bd51b66..e527808 100644 --- a/src/template.ts +++ b/src/template.ts @@ -1,4 +1,4 @@ -import * as allTemplates from '../templates' +import * as allTemplates from './templates' export async function template( name: keyof typeof allTemplates, diff --git a/templates/DanePobierzPelnyRaport.ts b/src/templates/DanePobierzPelnyRaport.ts similarity index 100% rename from templates/DanePobierzPelnyRaport.ts rename to src/templates/DanePobierzPelnyRaport.ts diff --git a/templates/DaneSzukajPodmioty.ts b/src/templates/DaneSzukajPodmioty.ts similarity index 100% rename from templates/DaneSzukajPodmioty.ts rename to src/templates/DaneSzukajPodmioty.ts diff --git a/templates/GetValue.ts b/src/templates/GetValue.ts similarity index 100% rename from templates/GetValue.ts rename to src/templates/GetValue.ts diff --git a/templates/Zaloguj.ts b/src/templates/Zaloguj.ts similarity index 100% rename from templates/Zaloguj.ts rename to src/templates/Zaloguj.ts diff --git a/templates/index.ts b/src/templates/index.ts similarity index 100% rename from templates/index.ts rename to src/templates/index.ts