Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: coderaiser/minify
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v13.0.0
Choose a base ref
...
head repository: coderaiser/minify
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v14.0.0
Choose a head ref
  • 9 commits
  • 6 files changed
  • 1 contributor

Commits on Mar 24, 2025

  1. Copy the full SHA
    860da27 View commit details
  2. Copy the full SHA
    890c675 View commit details
  3. Copy the full SHA
    d202e06 View commit details
  4. Copy the full SHA
    e6897d7 View commit details
  5. Copy the full SHA
    36fc306 View commit details
  6. Copy the full SHA
    adb0f91 View commit details
  7. chore: lint

    coderaiser committed Mar 24, 2025
    Copy the full SHA
    5f33d13 View commit details
  8. Copy the full SHA
    575152c View commit details
  9. chore: minify: v14.0.0

    coderaiser committed Mar 24, 2025
    Copy the full SHA
    4922b8c View commit details
Showing with 21 additions and 12 deletions.
  1. +0 −1 .github/workflows/node.js.yml
  2. +0 −1 .github/workflows/nodejs-pr.yml
  3. +1 −1 .madrun.mjs
  4. +11 −0 ChangeLog
  5. +1 −1 eslint.config.js
  6. +8 −8 package.json
1 change: 0 additions & 1 deletion .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
@@ -14,7 +14,6 @@ jobs:
strategy:
matrix:
node-version:
- 18.x
- 20.x
- 22.x
- 23.x
1 change: 0 additions & 1 deletion .github/workflows/nodejs-pr.yml
Original file line number Diff line number Diff line change
@@ -7,7 +7,6 @@ jobs:
strategy:
matrix:
node-version:
- 18.x
- 20.x
- 22.x
- 23.x
2 changes: 1 addition & 1 deletion .madrun.mjs
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@ import {run} from 'madrun';

export default {
'test': () => `tape 'test/*.js' 'lib/**/*.spec.{js,mjs}'`,
'coverage': async () => `escover ${await run('test')}`,
'coverage': async () => `escover "${await run('test')}"`,
'fix:lint': () => run('lint', '--fix'),
'lint': () => 'putout .',
'fresh:lint': () => run('lint', '--fresh'),
11 changes: 11 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
2025.03.24, v14.0.0

feature:
- 575152c minify: drop support of node < 20
- adb0f91 minify: supertape v11.0.3
- 36fc306 minify: putout v39.0.11
- e6897d7 minify: madrun v11.0.0
- d202e06 minify: eslint-plugin-putout v26.1.0
- 890c675 minify: @putout/minify v5.0.0
- 860da27 minify: esbuild v0.25.1

2025.02.03, v13.0.0

feature:
2 changes: 1 addition & 1 deletion eslint.config.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
import {safeAlign} from 'eslint-plugin-putout/config';
import {safeAlign} from 'eslint-plugin-putout';

export default safeAlign;
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "minify",
"version": "13.0.0",
"version": "14.0.0",
"description": "Minifier of js, css, html and img",
"homepage": "http://coderaiser.github.io/minify",
"author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
@@ -32,12 +32,12 @@
"putout": "madrun putout"
},
"dependencies": {
"@putout/minify": "^4.0.0",
"@putout/minify": "^5.0.0",
"@swc/core": "^1.6.7",
"clean-css": "^5.0.1",
"css-b64-images": "~0.2.5",
"debug": "^4.1.0",
"esbuild": "^0.24.0",
"esbuild": "^0.25.1",
"find-up": "^7.0.0",
"html-minifier-terser": "^7.1.0",
"lightningcss": "^1.28.1",
@@ -51,15 +51,15 @@
"main": "lib/minify.js",
"license": "MIT",
"engines": {
"node": ">=18"
"node": ">=20"
},
"devDependencies": {
"escover": "^4.0.0",
"eslint": "^9.3.0",
"eslint-plugin-putout": "^24.0.0",
"madrun": "^10.0.0",
"putout": "^38.0.2",
"supertape": "^10.6.0"
"eslint-plugin-putout": "^26.1.0",
"madrun": "^11.0.0",
"putout": "^39.0.11",
"supertape": "^11.0.3"
},
"publishConfig": {
"access": "public"