@transcodes/design-tokens 0.4.2 → 0.4.4

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/CHANGELOG.md +12 -0
  2. package/package.json +3 -2
package/CHANGELOG.md CHANGED
@@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [0.4.4] - 2025-12-23
9
+
10
+ ### Added
11
+
12
+ - `prepublishOnly` 스크립트 추가: npm publish 시 자동으로 clean → build 수행
13
+
14
+ ## [0.4.3] - 2025-12-23
15
+
16
+ ### Changed
17
+
18
+ - 빌드 파일 최신화를 위한 재배포 (코드 변경 없음)
19
+
8
20
  ## [0.4.0] - 2025-12-17
9
21
 
10
22
  ### Changed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@transcodes/design-tokens",
3
- "version": "0.4.2",
3
+ "version": "0.4.4",
4
4
  "private": false,
5
5
  "description": "Style Dictionary based design tokens with dark mode support for consistent, beautiful interfaces",
6
6
  "keywords": [
@@ -57,7 +57,8 @@
57
57
  ],
58
58
  "scripts": {
59
59
  "build": "bun --bun style-dictionary build --config sd.config.ts && bun --bun style-dictionary build --config sd.config.dark.ts && bun run scripts/build-dark-css.ts && bun run scripts/build-components-js.ts && bun run scripts/build-index.ts && bun run scripts/minify-css.ts",
60
- "clean": "rm -rf build"
60
+ "clean": "rm -rf build",
61
+ "prepublishOnly": "bun run clean && bun run build"
61
62
  },
62
63
  "devDependencies": {
63
64
  "@types/bun": "^1.3.4",