@julong/mono-rele2-utils 1.0.1

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.
@@ -0,0 +1,4 @@
1
+
2
+ > @julong/mono-rele2-utils@1.0.0 build /home/runner/work/mono-rele2/mono-rele2/packages/utils
3
+ > tsc --build
4
+
package/CHANGELOG.md ADDED
@@ -0,0 +1,11 @@
1
+ ## @julong/mono-rele2-utils [1.0.1](https://github.com/mss-julong/mono-rele2/compare/@julong/mono-rele2-utils@1.0.0...@julong/mono-rele2-utils@1.0.1) (2026-04-30)
2
+
3
+ ### Bug Fixes
4
+
5
+ * 오류 수정 ([a420e11](https://github.com/mss-julong/mono-rele2/commit/a420e11fe5874980c85b2a0d404162af8336423e))
6
+
7
+ ## @julong/mono-rele2-utils 1.0.0 (2026-04-30)
8
+
9
+ ### Features
10
+
11
+ * 프로젝트 초기화 ([4786372](https://github.com/mss-julong/mono-rele2/commit/47863729484561d11757409bde78dd63baad8c8c))
package/dist/cn.d.ts ADDED
@@ -0,0 +1,2 @@
1
+ export declare function cn(...classes: (string | undefined | null | false)[]): string;
2
+ //# sourceMappingURL=cn.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"cn.d.ts","sourceRoot":"","sources":["../src/cn.ts"],"names":[],"mappings":"AAAA,wBAAgB,EAAE,CAAC,GAAG,OAAO,EAAE,CAAC,MAAM,GAAG,SAAS,GAAG,IAAI,GAAG,KAAK,CAAC,EAAE,GAAG,MAAM,CAE5E"}
package/dist/cn.js ADDED
@@ -0,0 +1,5 @@
1
+ export function cn(...classes) {
2
+ return classes.filter(Boolean).join(' ');
3
+ }
4
+ // 테스트
5
+ //# sourceMappingURL=cn.js.map
package/dist/cn.js.map ADDED
@@ -0,0 +1 @@
1
+ {"version":3,"file":"cn.js","sourceRoot":"","sources":["../src/cn.ts"],"names":[],"mappings":"AAAA,MAAM,UAAU,EAAE,CAAC,GAAG,OAA8C;IAClE,OAAO,OAAO,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAA;AAC1C,CAAC;AACD,MAAM"}
@@ -0,0 +1,2 @@
1
+ export * from './cn.js';
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,SAAS,CAAA"}
package/dist/index.js ADDED
@@ -0,0 +1,2 @@
1
+ export * from './cn.js';
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,SAAS,CAAA"}
package/package.json ADDED
@@ -0,0 +1,24 @@
1
+ {
2
+ "name": "@julong/mono-rele2-utils",
3
+ "version": "1.0.1",
4
+ "license": "ISC",
5
+ "type": "module",
6
+ "exports": {
7
+ ".": {
8
+ "import": "./src/index.ts",
9
+ "types": "./src/index.ts"
10
+ }
11
+ },
12
+ "publishConfig": {
13
+ "access": "public"
14
+ },
15
+ "scripts": {
16
+ "build": "tsc --build",
17
+ "typecheck": "tsc --noEmit",
18
+ "clean": "rimraf dist tsconfig.tsbuildinfo"
19
+ },
20
+ "devDependencies": {
21
+ "rimraf": "^6.0.1",
22
+ "typescript": "^5.6.3"
23
+ }
24
+ }
package/src/cn.ts ADDED
@@ -0,0 +1,4 @@
1
+ export function cn(...classes: (string | undefined | null | false)[]): string {
2
+ return classes.filter(Boolean).join(' ')
3
+ }
4
+ // 테스트
package/src/index.ts ADDED
@@ -0,0 +1 @@
1
+ export * from './cn.js'
package/tsconfig.json ADDED
@@ -0,0 +1,19 @@
1
+ {
2
+ "$schema": "https://json.schemastore.org/tsconfig",
3
+ "compilerOptions": {
4
+ "target": "ES2022",
5
+ "lib": ["ES2022"],
6
+ "module": "NodeNext",
7
+ "moduleResolution": "NodeNext",
8
+ "strict": true,
9
+ "esModuleInterop": true,
10
+ "skipLibCheck": true,
11
+ "resolveJsonModule": true,
12
+ "declaration": true,
13
+ "declarationMap": true,
14
+ "sourceMap": true,
15
+ "outDir": "dist",
16
+ "rootDir": "src"
17
+ },
18
+ "include": ["src"]
19
+ }
@@ -0,0 +1 @@
1
+ {"root":["./src/cn.ts","./src/index.ts"],"version":"5.9.3"}