From 4674b28d20a8e6da7206cc692f0f9d610d560ebb Mon Sep 17 00:00:00 2001 From: Supan Adit Pratama Date: Tue, 29 Oct 2024 10:34:43 +0700 Subject: [PATCH] feat: clean way to publish package --- libs/index.ts | 4 ++-- libs/prisma/index.ts | 1 + libs/skeleton/index.ts | 1 + package.json | 2 +- 4 files changed, 5 insertions(+), 3 deletions(-) create mode 100644 libs/prisma/index.ts create mode 100644 libs/skeleton/index.ts diff --git a/libs/index.ts b/libs/index.ts index 3efbec2..c8ef6e1 100644 --- a/libs/index.ts +++ b/libs/index.ts @@ -1,2 +1,2 @@ -export * from './prisma/src/index'; -export * from './skeleton/src/index'; +export * from './prisma'; +export * from './skeleton'; diff --git a/libs/prisma/index.ts b/libs/prisma/index.ts new file mode 100644 index 0000000..8420b10 --- /dev/null +++ b/libs/prisma/index.ts @@ -0,0 +1 @@ +export * from './src'; diff --git a/libs/skeleton/index.ts b/libs/skeleton/index.ts new file mode 100644 index 0000000..8420b10 --- /dev/null +++ b/libs/skeleton/index.ts @@ -0,0 +1 @@ +export * from './src'; diff --git a/package.json b/package.json index 49f8690..ab8314d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@aditama-labs/nest-autocrud", - "version": "0.0.13", + "version": "0.0.17", "description": "NestJS Auto CRUD Library", "author": "Supan Adit Pratama", "license": "MIT",