kakaotalk-chat-analyzer 0.2.7 → 0.2.8
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/README.md +2 -0
- package/dist/src/version.d.ts +2 -2
- package/dist/src/version.js +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -91,6 +91,8 @@ npx kcachat@latest "./KakaoTalk_Chat_....csv" --local
|
|
|
91
91
|
npx kcachat@latest "./KakaoTalk_Chat_....csv"
|
|
92
92
|
```
|
|
93
93
|
|
|
94
|
+
> **버전이 안 바뀌는 것 같을 때:** `npx`는 한 번 설치한 패키지를 캐시해 **재설치 확인 문구가 안 나올 수** 있습니다. `npx --yes --prefer-online kcachat@latest --version`으로 확인하거나, 본체를 직접 `npx kakaotalk-chat-analyzer@latest`로 실행하세요. ([kcachat README](kcachat/README.md) 참고)
|
|
95
|
+
|
|
94
96
|
전체 이름으로 실행해도 동일합니다:
|
|
95
97
|
|
|
96
98
|
```bash
|
package/dist/src/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.
|
|
2
|
-
export declare const USER_AGENT = "kakaotalk-chat-analyzer/0.
|
|
1
|
+
export declare const VERSION = "0.2.8";
|
|
2
|
+
export declare const USER_AGENT = "kakaotalk-chat-analyzer/0.2.8";
|
package/dist/src/version.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "kakaotalk-chat-analyzer",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.8",
|
|
4
4
|
"description": "카카오톡 CSV 보내기 → 한글 리포트 → 선택적 임시 공유. npx 한 줄로 실행 가능한 CLI.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"homepage": "https://claudianus.github.io/kakaotalk-chat-analyzer/",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
],
|
|
23
23
|
"scripts": {
|
|
24
24
|
"build": "tsc -p tsconfig.json",
|
|
25
|
-
"prepack": "npm run build",
|
|
25
|
+
"prepack": "node scripts/sync-version.mjs && npm run build",
|
|
26
26
|
"test": "npm run build && node --test dist/test/*.test.js",
|
|
27
27
|
"smoke": "node dist/src/cli.js --help",
|
|
28
28
|
"gh:sync-npm-secret": "bash scripts/sync-npm-token-to-gh.sh"
|