Skip to content

Commit 0321653

Browse files
authored
Merge pull request #2514 from srod/hotfixes/v9
Merge hotfixes to main: 9.0.2
2 parents f5a56c5 + c4fcf63 commit 0321653

File tree

20 files changed

+41
-19
lines changed

20 files changed

+41
-19
lines changed

.changeset/wet-maps-applaud.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
"@node-minify/google-closure-compiler": patch
3+
"@node-minify/html-minifier": patch
4+
"@node-minify/babel-minify": patch
5+
"@node-minify/no-compress": patch
6+
"@node-minify/jsonminify": patch
7+
"@node-minify/clean-css": patch
8+
"@node-minify/uglify-es": patch
9+
"@node-minify/uglify-js": patch
10+
"@node-minify/cssnano": patch
11+
"@node-minify/sqwish": patch
12+
"@node-minify/terser": patch
13+
"@node-minify/crass": patch
14+
"@node-minify/utils": patch
15+
"@node-minify/core": patch
16+
"@node-minify/csso": patch
17+
"@node-minify/cli": patch
18+
"@node-minify/run": patch
19+
"@node-minify/yui": patch
20+
---
21+
22+
Fixing packages exports and mkdirp import

packages/babel-minify/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
".": {
2626
"types": "./dist/index.d.ts",
2727
"import": "./dist/index.mjs",
28-
"require": "./dist/index.cjs"
28+
"require": "./dist/index.js"
2929
}
3030
},
3131
"files": [

packages/clean-css/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
".": {
2626
"types": "./dist/index.d.ts",
2727
"import": "./dist/index.mjs",
28-
"require": "./dist/index.cjs"
28+
"require": "./dist/index.js"
2929
}
3030
},
3131
"files": [

packages/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
".": {
2828
"types": "./dist/index.d.ts",
2929
"import": "./dist/index.mjs",
30-
"require": "./dist/index.cjs"
30+
"require": "./dist/index.js"
3131
}
3232
},
3333
"files": [

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
".": {
2525
"types": "./dist/index.d.ts",
2626
"import": "./dist/index.mjs",
27-
"require": "./dist/index.cjs"
27+
"require": "./dist/index.js"
2828
}
2929
},
3030
"files": [

packages/core/src/compress.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
import fs from "node:fs";
1111
import type { Settings } from "@node-minify/types";
1212
import { utils } from "@node-minify/utils";
13-
import mkdirp from "mkdirp";
13+
import { mkdirp } from "mkdirp";
1414

1515
/**
1616
* Run compressor.

packages/crass/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
".": {
2626
"types": "./dist/index.d.ts",
2727
"import": "./dist/index.mjs",
28-
"require": "./dist/index.cjs"
28+
"require": "./dist/index.js"
2929
}
3030
},
3131
"files": [

packages/cssnano/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
".": {
2626
"types": "./dist/index.d.ts",
2727
"import": "./dist/index.mjs",
28-
"require": "./dist/index.cjs"
28+
"require": "./dist/index.js"
2929
}
3030
},
3131
"files": [

packages/csso/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
".": {
2626
"types": "./dist/index.d.ts",
2727
"import": "./dist/index.mjs",
28-
"require": "./dist/index.cjs"
28+
"require": "./dist/index.js"
2929
}
3030
},
3131
"files": [

packages/google-closure-compiler/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
".": {
2727
"types": "./dist/index.d.ts",
2828
"import": "./dist/index.mjs",
29-
"require": "./dist/index.cjs"
29+
"require": "./dist/index.js"
3030
}
3131
},
3232
"files": [

0 commit comments

Comments
 (0)