goodchuck-utils 1.11.0 → 1.12.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.
Files changed (2) hide show
  1. package/README.md +31 -0
  2. package/package.json +1 -1
package/README.md ADDED
@@ -0,0 +1,31 @@
1
+ # goodchuck-utils (Deprecated)
2
+
3
+ > ⚠️ **이 패키지는 더 이상 유지보수되지 않습니다.**
4
+
5
+ 이 패키지는 [`@blastlabs/utils`](https://www.npmjs.com/package/@blastlabs/utils)로 이전되었습니다.
6
+
7
+ ## 마이그레이션
8
+
9
+ 기존 패키지를 제거하고 새 패키지를 설치해주세요:
10
+
11
+ ```bash
12
+ # 기존 패키지 제거
13
+ npm uninstall goodchuck-utils
14
+
15
+ # 새 패키지 설치
16
+ npm install @blastlabs/utils
17
+ ```
18
+
19
+ ## 임포트 경로 변경
20
+
21
+ ```diff
22
+ - import { useDebounce, useToggle } from 'goodchuck-utils/hooks';
23
+ + import { useDebounce, useToggle } from '@blastlabs/utils/hooks';
24
+
25
+ - import { DevPanel, FormDevTools } from 'goodchuck-utils/components/dev';
26
+ + import { DevPanel, FormDevTools } from '@blastlabs/utils/components/dev';
27
+ ```
28
+
29
+ ## 라이선스
30
+
31
+ ISC
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "goodchuck-utils",
3
- "version": "1.11.0",
3
+ "version": "1.12.2",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",