Skip to content

Commit c336574

Browse files
github-actions[bot]sonofmagic
authored andcommitted
Version Packages
1 parent ad2865c commit c336574

File tree

9 files changed

+44
-32
lines changed

9 files changed

+44
-32
lines changed

β€Ž.changeset/fair-lamps-invite.mdβ€Ž

Lines changed: 0 additions & 11 deletions
This file was deleted.

β€Ž.changeset/green-houses-rhyme.mdβ€Ž

Lines changed: 0 additions & 9 deletions
This file was deleted.

β€Ž.changeset/itchy-forks-greet.mdβ€Ž

Lines changed: 0 additions & 9 deletions
This file was deleted.

β€Žpackages/config/CHANGELOG.mdβ€Ž

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# @tailwindcss-mangle/config
22

3+
## 6.1.3
4+
5+
### Patch Changes
6+
7+
- πŸ› **Fix workspace install and e2e stability when package dist artifacts are unavailable during lifecycle scripts.** [`84dcb16`](https://github.com/sonofmagic/tailwindcss-mangle/commit/84dcb1667cbe360c67744f3fd1f53d5c8c45eaae) by @sonofmagic
8+
- Keep published entry fields for config/shared/tailwindcss-patch pointing to `dist` outputs.
9+
- Make `tw-patch install` resilient in monorepo installs by avoiding eager config loading and lazily resolving config/shared modules with source fallbacks.
10+
- Prevent CI install failures caused by module resolution during app `prepare`/`postinstall` hooks.
11+
- πŸ“¦ **Dependencies** [`84dcb16`](https://github.com/sonofmagic/tailwindcss-mangle/commit/84dcb1667cbe360c67744f3fd1f53d5c8c45eaae)
12+
β†’ `@tailwindcss-mangle/shared@4.1.3`
13+
314
## 6.1.2
415

516
### Patch Changes

β€Žpackages/config/package.jsonβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@tailwindcss-mangle/config",
33
"type": "module",
4-
"version": "6.1.2",
4+
"version": "6.1.3",
55
"description": "The config and load function of tailwindcss-mangle",
66
"author": "ice breaker <1324318532@qq.com>",
77
"license": "MIT",

β€Žpackages/shared/CHANGELOG.mdβ€Ž

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# @tailwindcss-mangle/shared
22

3+
## 4.1.3
4+
5+
### Patch Changes
6+
7+
- πŸ› **Fix workspace install and e2e stability when package dist artifacts are unavailable during lifecycle scripts.** [`84dcb16`](https://github.com/sonofmagic/tailwindcss-mangle/commit/84dcb1667cbe360c67744f3fd1f53d5c8c45eaae) by @sonofmagic
8+
- Keep published entry fields for config/shared/tailwindcss-patch pointing to `dist` outputs.
9+
- Make `tw-patch install` resilient in monorepo installs by avoiding eager config loading and lazily resolving config/shared modules with source fallbacks.
10+
- Prevent CI install failures caused by module resolution during app `prepare`/`postinstall` hooks.
11+
312
## 4.1.2
413

514
### Patch Changes

β€Žpackages/shared/package.jsonβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@tailwindcss-mangle/shared",
33
"type": "module",
4-
"version": "4.1.2",
4+
"version": "4.1.3",
55
"description": "The shared utils of tailwindcss-mangle",
66
"author": "ice breaker <1324318532@qq.com>",
77
"license": "MIT",

β€Žpackages/tailwindcss-patch/CHANGELOG.mdβ€Ž

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,26 @@
11
# tailwindcss-patch
22

3+
## 8.7.3
4+
5+
### Patch Changes
6+
7+
- πŸ› **Fix workspace install and e2e stability when package dist artifacts are unavailable during lifecycle scripts.** [`84dcb16`](https://github.com/sonofmagic/tailwindcss-mangle/commit/84dcb1667cbe360c67744f3fd1f53d5c8c45eaae) by @sonofmagic
8+
- Keep published entry fields for config/shared/tailwindcss-patch pointing to `dist` outputs.
9+
- Make `tw-patch install` resilient in monorepo installs by avoiding eager config loading and lazily resolving config/shared modules with source fallbacks.
10+
- Prevent CI install failures caused by module resolution during app `prepare`/`postinstall` hooks.
11+
12+
- πŸ› **Refactor command-layer internals for clearer module boundaries while preserving CLI behavior.** [`3930935`](https://github.com/sonofmagic/tailwindcss-mangle/commit/3930935d910ff9a2bcd502cb241973b79c06ab59) by @sonofmagic
13+
- Split command internals into focused modules for context creation, metadata/definition resolution, migration argument parsing, and migration/status output rendering.
14+
- Strengthen module-level coverage for CLI factory wiring, command metadata/definitions, runtime/context memoization, default handler maps, migration argument normalization, and output rendering.
15+
- Keep public command names, options, and runtime behavior unchanged while reducing internal coupling for future maintenance.
16+
17+
- πŸ› **Remove legacy source-level CLI compatibility shims and standardize internal imports on `src/commands/*`.** [`fdd0cf3`](https://github.com/sonofmagic/tailwindcss-mangle/commit/fdd0cf39e985d3a2cbd2b3096f4914add47300c8) by @sonofmagic
18+
- Remove `src/cli/commands.ts` and `src/cli/migrate-config.ts` compatibility shim files.
19+
- Update internal tests and command wiring to import directly from `src/commands/*`.
20+
- Keep public package API and CLI behavior unchanged.
21+
- πŸ“¦ **Dependencies** [`84dcb16`](https://github.com/sonofmagic/tailwindcss-mangle/commit/84dcb1667cbe360c67744f3fd1f53d5c8c45eaae)
22+
β†’ `@tailwindcss-mangle/config@6.1.3`
23+
324
## 8.7.2
425

526
### Patch Changes

β€Žpackages/tailwindcss-patch/package.jsonβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tailwindcss-patch",
3-
"version": "8.7.2",
3+
"version": "8.7.3",
44
"description": "patch tailwindcss for exposing context and extract classes",
55
"author": "ice breaker <1324318532@qq.com>",
66
"license": "MIT",

0 commit comments

Comments
Β (0)