@chuseok22/capacitor-kakao-login 0.1.1 → 0.1.2
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.
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const APP_VERSION = '0.1.
|
|
1
|
+
export const APP_VERSION = '0.1.2';
|
|
2
2
|
//# sourceMappingURL=version.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"plugin.esm.mjs","sources":["esm/index.js","esm/web.js"],"sourcesContent":["import { registerPlugin } from '@capacitor/core';\n// 플러그인 등록명은 iOS jsName 및 Android @CapacitorPlugin(name) 과 반드시 일치해야 한다.\nconst KakaoLogin = registerPlugin('KakaoLogin', {\n web: () => import('./web').then(m => new m.KakaoLoginWeb()),\n});\nexport * from './definitions';\nexport { KakaoLogin };\n//# sourceMappingURL=index.js.map","import { WebPlugin } from '@capacitor/core';\n// 카카오 로그인은 네이티브 앱 환경 전용이므로, 웹 구현체는 unimplemented 에러를 던진다.\nexport class KakaoLoginWeb extends WebPlugin {\n async login() {\n throw this.unimplemented('카카오 로그인은 네이티브 앱 환경에서만 지원됩니다.');\n }\n}\n//# sourceMappingURL=web.js.map"],"names":[],"mappings":";;AACA;AACK,MAAC,UAAU,GAAG,cAAc,CAAC,YAAY,EAAE;AAChD,IAAI,GAAG,EAAE,MAAM,mDAAe,CAAC,IAAI,CAAC,CAAC,IAAI,IAAI,CAAC,CAAC,aAAa,EAAE,CAAC;AAC/D,CAAC;;ACHD;AACO,MAAM,aAAa,SAAS,SAAS,CAAC;AAC7C,IAAI,MAAM,KAAK,GAAG;AAClB,QAAQ,MAAM,IAAI,CAAC,aAAa,CAAC,8BAA8B,CAAC;AAChE,IAAI;AACJ;;;;;;;;;"}
|
package/package.json
CHANGED
|
@@ -1,11 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chuseok22/capacitor-kakao-login",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Capacitor plugin for Kakao social login (iOS & Android)",
|
|
5
5
|
"main": "dist/plugin.cjs.js",
|
|
6
|
-
"module": "dist/plugin.esm.
|
|
6
|
+
"module": "dist/plugin.esm.mjs",
|
|
7
7
|
"types": "dist/esm/index.d.ts",
|
|
8
8
|
"unpkg": "dist/plugin.js",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"types": "./dist/esm/index.d.ts",
|
|
12
|
+
"import": "./dist/plugin.esm.mjs",
|
|
13
|
+
"require": "./dist/plugin.cjs.js"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
9
16
|
"files": [
|
|
10
17
|
"dist/",
|
|
11
18
|
"ios/",
|
|
@@ -14,7 +21,6 @@
|
|
|
14
21
|
],
|
|
15
22
|
"author": "Baek Jihoon",
|
|
16
23
|
"license": "MIT",
|
|
17
|
-
"type": "module",
|
|
18
24
|
"repository": {
|
|
19
25
|
"type": "git",
|
|
20
26
|
"url": "https://github.com/chuseok22/capacitor-kakao-login.git"
|
|
@@ -29,7 +35,7 @@
|
|
|
29
35
|
"android"
|
|
30
36
|
],
|
|
31
37
|
"scripts": {
|
|
32
|
-
"build": "npm run clean && tsc && rollup -c rollup.config.
|
|
38
|
+
"build": "npm run clean && tsc && rollup -c rollup.config.mjs",
|
|
33
39
|
"clean": "rimraf ./dist",
|
|
34
40
|
"lint": "eslint . --ext ts",
|
|
35
41
|
"fmt": "prettier --write --parser typescript 'src/**/*.ts'",
|
package/dist/plugin.esm.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"plugin.esm.js","sources":["esm/index.js","esm/web.js"],"sourcesContent":["import { registerPlugin } from '@capacitor/core';\n// 플러그인 등록명은 iOS jsName 및 Android @CapacitorPlugin(name) 과 반드시 일치해야 한다.\nconst KakaoLogin = registerPlugin('KakaoLogin', {\n web: () => import('./web').then(m => new m.KakaoLoginWeb()),\n});\nexport * from './definitions';\nexport { KakaoLogin };\n//# sourceMappingURL=index.js.map","import { WebPlugin } from '@capacitor/core';\n// 카카오 로그인은 네이티브 앱 환경 전용이므로, 웹 구현체는 unimplemented 에러를 던진다.\nexport class KakaoLoginWeb extends WebPlugin {\n async login() {\n throw this.unimplemented('카카오 로그인은 네이티브 앱 환경에서만 지원됩니다.');\n }\n}\n//# sourceMappingURL=web.js.map"],"names":[],"mappings":";;AACA;AACK,MAAC,UAAU,GAAG,cAAc,CAAC,YAAY,EAAE;AAChD,IAAI,GAAG,EAAE,MAAM,mDAAe,CAAC,IAAI,CAAC,CAAC,IAAI,IAAI,CAAC,CAAC,aAAa,EAAE,CAAC;AAC/D,CAAC;;ACHD;AACO,MAAM,aAAa,SAAS,SAAS,CAAC;AAC7C,IAAI,MAAM,KAAK,GAAG;AAClB,QAAQ,MAAM,IAAI,CAAC,aAAa,CAAC,8BAA8B,CAAC;AAChE,IAAI;AACJ;;;;;;;;;"}
|