From 117de26880359d39183f6065538b29942dfbfcd9 Mon Sep 17 00:00:00 2001 From: Supan Adit Pratama Date: Sun, 10 Nov 2024 12:58:27 +0700 Subject: [PATCH] chore: fix import and update version to 0.5.2 --- libs/index.ts | 1 + libs/typeorm/index.ts | 1 + libs/typeorm/src/index.ts | 5 +++-- package.json | 4 ++-- 4 files changed, 7 insertions(+), 4 deletions(-) create mode 100644 libs/typeorm/index.ts diff --git a/libs/index.ts b/libs/index.ts index c8ef6e1..81082e5 100644 --- a/libs/index.ts +++ b/libs/index.ts @@ -1,2 +1,3 @@ export * from './prisma'; export * from './skeleton'; +export * from './typeorm'; diff --git a/libs/typeorm/index.ts b/libs/typeorm/index.ts new file mode 100644 index 0000000..8420b10 --- /dev/null +++ b/libs/typeorm/index.ts @@ -0,0 +1 @@ +export * from './src'; diff --git a/libs/typeorm/src/index.ts b/libs/typeorm/src/index.ts index 5e59fe0..c8b6622 100644 --- a/libs/typeorm/src/index.ts +++ b/libs/typeorm/src/index.ts @@ -1,4 +1,5 @@ +export * from './constants'; +export * from './interfaces'; export * from './typeorm.module'; export * from './typeorm.service'; -export * from './interfaces'; -export * from './constants'; +export * from './processes'; diff --git a/package.json b/package.json index 9a5bc9a..57cb909 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@aditama-labs/nest-autocrud", - "version": "0.5.1", + "version": "0.5.2", "description": "NestJS Auto CRUD Library", "author": "Supan Adit Pratama", "license": "MIT", @@ -97,4 +97,4 @@ "^@aditama-labs/nest-autocrud/typeorm(|/.*)$": "/libs/typeorm/src/$1" } } -} +} \ No newline at end of file