Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions .changeset/stale-trainers-remain.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
"@node-minify/action": patch
"@node-minify/cssnano": patch
"@node-minify/docs": patch
"@node-minify/esbuild": patch
"@node-minify/html-minifier": patch
"@node-minify/imagemin": patch
"@node-minify/lightningcss": patch
"@node-minify/minify-html": patch
"@node-minify/sharp": patch
"@node-minify/svgo": patch
"@node-minify/swc": patch
---

chore(deps): refresh workspace dependencies

Update dependency ranges across the docs site, GitHub Action package, and published minifier wrappers.
Align Bun pins used in CI with the repo package manager version and keep the docs CSS compatible with newer lint rules.
2 changes: 1 addition & 1 deletion .github/actions/node-minify/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ runs:
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: "1.3.9"
bun-version: "1.3.10"

- name: Install dependencies
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: "1.3.9"
bun-version: "1.3.10"

- name: Setup Node.js
uses: actions/setup-node@v6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: 📦 Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: "1.3.9"
bun-version: "1.3.10"

- name: ⚙️ Setup Node
uses: actions/setup-node@v6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: "1.3.9"
bun-version: "1.3.10"

- name: Install dependencies
run: bun install --frozen-lockfile
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: "1.3.9"
bun-version: "1.3.10"

- name: Install dependencies
run: bun install --frozen-lockfile
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: "1.3.9"
bun-version: "1.3.10"

- name: Set up JDK 11
uses: actions/setup-java@v5
Expand Down
372 changes: 164 additions & 208 deletions bun.lock

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,18 +16,18 @@
"format": "biome check --write ."
},
"dependencies": {
"@astrojs/cloudflare": "^12.0.0",
"@astrojs/cloudflare": "^12.6.12",
"@astrojs/partytown": "2.1.4",
"@astrojs/preact": "^4.0.0",
"@astrojs/preact": "^4.1.3",
"@astrolib/analytics": "0.6.1",
"@types/node": "^22.9.0",
"astro": "^5.0.0",
"preact": "^10.24.3"
"@types/node": "^22.19.15",
"astro": "^5.18.0",
"preact": "^10.28.4"
},
"devDependencies": {
"@astrojs/ts-plugin": "1.10.6",
"@cloudflare/workers-types": "^4.20241106.0",
"@cloudflare/workers-types": "^4.20260307.1",
"html-escaper": "^3.0.3",
"wrangler": "^4.0.0"
"wrangler": "^4.71.0"
}
}
34 changes: 15 additions & 19 deletions docs/src/styles/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ body {
flex-direction: column;
min-height: 100vh;
font-family: var(--font-body);
font-size: 1rem;
font-size: clamp(0.9rem, 0.75rem + 0.375vw + var(--user-font-scale), 1rem);
line-height: 1.5;
max-width: 100vw;
Expand Down Expand Up @@ -163,6 +162,21 @@ article > section a {
display: block;
}

code {
--border-radius: 3px;
--padding-block: 0.2rem;
--padding-inline: 0.33rem;

font-family: var(--font-mono);
font-size: 0.85em;
color: inherit;
background-color: var(--theme-code-inline-bg);
padding: var(--padding-block) var(--padding-inline);
margin: calc(var(--padding-block) * -1) -0.125em;
border-radius: var(--border-radius);
overflow-wrap: anywhere;
}
Comment thread
coderabbitai[bot] marked this conversation as resolved.

article > section iframe {
width: 100%;
height: auto;
Expand Down Expand Up @@ -206,21 +220,6 @@ strong {

/* Supporting Content */

code {
--border-radius: 3px;
--padding-block: 0.2rem;
--padding-inline: 0.33rem;

font-family: var(--font-mono);
font-size: 0.85em;
color: inherit;
background-color: var(--theme-code-inline-bg);
padding: var(--padding-block) var(--padding-inline);
margin: calc(var(--padding-block) * -1) -0.125em;
border-radius: var(--border-radius);
word-break: break-word;
}

pre.astro-code > code {
all: unset;
}
Expand Down Expand Up @@ -314,10 +313,7 @@ button {
padding: 0.33em 0.67em;
border: 0;
background: var(--theme-bg);
display: flex;
font-size: 1rem;
align-items: center;
gap: 0.25em;
border-radius: 99em;
color: var(--theme-text);
background-color: var(--theme-bg);
Expand Down
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,27 +11,27 @@
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.2",
"@biomejs/biome": "^2.3.11",
"@biomejs/biome": "^2.4.6",
"@changesets/cli": "2.29.8",
"@total-typescript/tsconfig": "^1.0.4",
"@types/node": "^22.19.3",
"@vitest/coverage-v8": "^4.0.16",
"@vitest/ui": "^4.0.16",
"@types/node": "^22.19.15",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/ui": "^4.0.18",
"babel-preset-minify": "0.5.2",
"copyfiles": "2.4.1",
"rimraf": "6.1.2",
"tsdown": "^0.20.0",
"tsdown": "^0.20.3",
"typescript": "5.9.3",
"vite-tsconfig-paths": "^6.0.3",
"vitest": "^4.0.16"
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^4.0.18"
},
"description": "Monorepo for node-minify",
"engines": {
"node": ">=20.0.0"
},
"homepage": "https://github.com/srod/node-minify",
"license": "MIT",
"packageManager": "bun@1.3.5",
"packageManager": "bun@1.3.10",
Comment thread
qodo-code-review[bot] marked this conversation as resolved.
"private": true,
"scripts": {
"build": "bun run build:deps && bun run --filter '!@node-minify/action' --parallel build && bun run --filter '@node-minify/action' build",
Expand Down
4 changes: 2 additions & 2 deletions packages/action/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"@actions/github": "^6.0.1",
"@node-minify/benchmark": "workspace:*",
"@node-minify/core": "workspace:*",
"@node-minify/esbuild": "workspace:*",
Expand All @@ -63,6 +63,6 @@
},
"devDependencies": {
"@node-minify/types": "workspace:*",
"@vercel/ncc": "^0.38.3"
"@vercel/ncc": "^0.38.4"
}
}
2 changes: 1 addition & 1 deletion packages/babel-minify/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,4 +62,4 @@
"@node-minify/types": "workspace:*",
"@types/babel-core": "^6.25.10"
}
}
}
6 changes: 3 additions & 3 deletions packages/benchmark/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@
"chalk": "5.6.2"
},
"devDependencies": {
"@node-minify/types": "workspace:*",
"@node-minify/terser": "workspace:*",
"@node-minify/esbuild": "workspace:*",
"@node-minify/swc": "workspace:*"
"@node-minify/swc": "workspace:*",
"@node-minify/terser": "workspace:*",
"@node-minify/types": "workspace:*"
}
}
2 changes: 1 addition & 1 deletion packages/clean-css/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,4 +59,4 @@
"@node-minify/types": "workspace:*",
"@types/clean-css": "^4.2.11"
}
}
}
4 changes: 2 additions & 2 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@
"dev": "tsdown src/index.ts --watch"
},
"dependencies": {
"@node-minify/core": "workspace:*",
"@node-minify/benchmark": "workspace:*",
"@node-minify/core": "workspace:*",
"@node-minify/utils": "workspace:*",
"chalk": "5.6.2",
"commander": "14.0.3",
Expand All @@ -80,4 +80,4 @@
"@node-minify/uglify-js": "workspace:*",
"@node-minify/yui": "workspace:*"
}
}
}
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,4 +56,4 @@
"devDependencies": {
"@node-minify/types": "workspace:*"
}
}
}
2 changes: 1 addition & 1 deletion packages/crass/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,4 +59,4 @@
"devDependencies": {
"@node-minify/types": "workspace:*"
}
}
}
4 changes: 2 additions & 2 deletions packages/cssnano/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,10 @@
},
"dependencies": {
"@node-minify/utils": "workspace:*",
"cssnano": "^7.0.6",
"cssnano": "^7.1.3",
"postcss": "8.5.6"
},
"devDependencies": {
"@node-minify/types": "workspace:*"
}
}
}
2 changes: 1 addition & 1 deletion packages/csso/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,4 +59,4 @@
"@node-minify/types": "workspace:*",
"@types/csso": "^5.0.4"
}
}
}
4 changes: 2 additions & 2 deletions packages/esbuild/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@
},
"dependencies": {
"@node-minify/utils": "workspace:*",
"esbuild": "^0.27.0"
"esbuild": "^0.27.3"
},
"devDependencies": {
"@node-minify/types": "workspace:*"
}
}
}
2 changes: 1 addition & 1 deletion packages/google-closure-compiler/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,4 +60,4 @@
"devDependencies": {
"@node-minify/types": "workspace:*"
}
}
}
4 changes: 2 additions & 2 deletions packages/html-minifier/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@
},
"dependencies": {
"@node-minify/utils": "workspace:*",
"html-minifier-next": "^4.14.3"
"html-minifier-next": "^4.19.1"
},
"devDependencies": {
"@node-minify/types": "workspace:*"
}
}
}
2 changes: 1 addition & 1 deletion packages/imagemin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
"dependencies": {
"@node-minify/core": "workspace:*",
"@node-minify/utils": "workspace:*",
"imagemin": "^9.0.0",
"imagemin": "^9.0.1",
"imagemin-gifsicle": "^7.0.0",
"imagemin-mozjpeg": "^10.0.0",
"imagemin-optipng": "^8.0.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/jsonminify/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,4 +60,4 @@
"@node-minify/types": "workspace:*",
"@types/jsonminify": "^0.4.3"
}
}
}
4 changes: 2 additions & 2 deletions packages/lightningcss/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@
},
"dependencies": {
"@node-minify/utils": "workspace:*",
"lightningcss": "^1.28.2"
"lightningcss": "^1.31.1"
},
"devDependencies": {
"@node-minify/types": "workspace:*"
}
}
}
4 changes: 2 additions & 2 deletions packages/minify-html/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@
"dev": "tsdown src/index.ts --watch"
},
"dependencies": {
"@node-minify/utils": "workspace:*",
"@minify-html/node": "^0.18.0"
"@minify-html/node": "^0.18.1",
"@node-minify/utils": "workspace:*"
},
"devDependencies": {
"@node-minify/types": "workspace:*"
Expand Down
2 changes: 1 addition & 1 deletion packages/no-compress/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,4 +54,4 @@
"devDependencies": {
"@node-minify/types": "workspace:*"
}
}
}
2 changes: 1 addition & 1 deletion packages/oxc/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,4 @@
"devDependencies": {
"@node-minify/types": "workspace:*"
}
}
}
2 changes: 1 addition & 1 deletion packages/run/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,4 +54,4 @@
"devDependencies": {
"@node-minify/types": "workspace:*"
}
}
}
2 changes: 1 addition & 1 deletion packages/sharp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
"dependencies": {
"@node-minify/core": "workspace:*",
"@node-minify/utils": "workspace:*",
"sharp": "^0.34.0"
"sharp": "^0.34.5"
},
"devDependencies": {
"@node-minify/types": "workspace:*"
Expand Down
Loading