mikulogin 1.0.0 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +2 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +3 -1
- package/dist/index.js.map +1 -1
- package/package.json +5 -4
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Paket utama Mikulogin.
|
|
3
|
-
* Re-export dari @mikulogin/core
|
|
3
|
+
* Re-export dari @mikulogin/core, @mikulogin/adapter-prisma, dan @mikulogin/nextjs untuk kemudahan penggunaan.
|
|
4
4
|
*/
|
|
5
5
|
export * from "@mikulogin/core";
|
|
6
6
|
export * from "@mikulogin/adapter-prisma";
|
|
7
|
+
export * from "@mikulogin/nextjs";
|
|
7
8
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAGH,cAAc,iBAAiB,CAAC;AAGhC,cAAc,2BAA2B,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAGH,cAAc,iBAAiB,CAAC;AAGhC,cAAc,2BAA2B,CAAC;AAG1C,cAAc,mBAAmB,CAAC"}
|
package/dist/index.js
CHANGED
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Paket utama Mikulogin.
|
|
3
|
-
* Re-export dari @mikulogin/core
|
|
3
|
+
* Re-export dari @mikulogin/core, @mikulogin/adapter-prisma, dan @mikulogin/nextjs untuk kemudahan penggunaan.
|
|
4
4
|
*/
|
|
5
5
|
// Ekspor seluruh tipe data dan utilitas dari @mikulogin/core
|
|
6
6
|
export * from "@mikulogin/core";
|
|
7
7
|
// Ekspor PrismaAdapter dari @mikulogin/adapter-prisma
|
|
8
8
|
export * from "@mikulogin/adapter-prisma";
|
|
9
|
+
// Ekspor fitur handler dan komponen UI dari @mikulogin/nextjs
|
|
10
|
+
export * from "@mikulogin/nextjs";
|
|
9
11
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,6DAA6D;AAC7D,cAAc,iBAAiB,CAAC;AAEhC,sDAAsD;AACtD,cAAc,2BAA2B,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,6DAA6D;AAC7D,cAAc,iBAAiB,CAAC;AAEhC,sDAAsD;AACtD,cAAc,2BAA2B,CAAC;AAE1C,8DAA8D;AAC9D,cAAc,mBAAmB,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mikulogin",
|
|
3
|
-
"version": "1.
|
|
4
|
-
"description": "Framework autentikasi Next.js modular dengan arsitektur Bring Your Own Database (BYOD). Paket utama yang mengekspor modul core dan
|
|
3
|
+
"version": "1.1.0",
|
|
4
|
+
"description": "Framework autentikasi Next.js modular dengan arsitektur Bring Your Own Database (BYOD). Paket utama yang mengekspor modul core, adapter, dan nextjs.",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.js",
|
|
7
7
|
"types": "./dist/index.d.ts",
|
|
@@ -20,8 +20,9 @@
|
|
|
20
20
|
}
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@mikulogin/core": "^1.
|
|
24
|
-
"@mikulogin/adapter-prisma": "^1.
|
|
23
|
+
"@mikulogin/core": "^1.1.0",
|
|
24
|
+
"@mikulogin/adapter-prisma": "^1.1.0",
|
|
25
|
+
"@mikulogin/nextjs": "^1.1.0"
|
|
25
26
|
},
|
|
26
27
|
"scripts": {
|
|
27
28
|
"build": "tsc"
|