Skip to content

Commit 490984b

Browse files
chore(): try native oxc minifier (#11008)
* chore(): try native oxc minifier * update CHANGELOG.md --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent a2a9886 commit 490984b

4 files changed

Lines changed: 11 additions & 38 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
## [next]
44

5+
- chore(): try native oxc minifier [#11008](https://github.com/fabricjs/fabric.js/pull/11008)
56
- chore(): disable Sonar optional chaining suggestions
67
- chore(deps-dev): bump the vitest group across 1 directory with 4 updates [#11003](https://github.com/fabricjs/fabric.js/pull/11003)
78
- chore(deps-dev): bump typescript-eslint from 8.59.4 to 8.60.1 [#11004](https://github.com/fabricjs/fabric.js/pull/11004)

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@
6868
"devDependencies": {
6969
"@eslint/js": "^10.0.1",
7070
"@playwright/test": "^1.60.0",
71-
"@rollup/plugin-terser": "^1.0.0",
7271
"@types/jsdom": "^21.1.7",
7372
"@types/micromatch": "^4.0.10",
7473
"@types/node": "^24.7.0",

pnpm-lock.yaml

Lines changed: 10 additions & 32 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

rolldown.config.mjs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import terser from '@rollup/plugin-terser';
21
import path from 'path';
32
import { redBright } from './scripts/colors.mjs';
43

@@ -58,7 +57,6 @@ export default [
5857
preserveModules: true,
5958
entryFileNames: '[name].min.mjs',
6059
sourcemap: true,
61-
plugins: [terser({ maxWorkers: 4 })],
6260
minify: true,
6361
}
6462
: null,
@@ -83,7 +81,6 @@ export default [
8381
name: 'fabric',
8482
format: 'es',
8583
sourcemap: true,
86-
plugins: [terser({ maxWorkers: 4 })],
8784
minify: true,
8885
}
8986
: null,
@@ -101,7 +98,6 @@ export default [
10198
name: 'fabric',
10299
format: 'umd',
103100
sourcemap: true,
104-
plugins: [terser({ maxWorkers: 4 })],
105101
minify: true,
106102
}
107103
: null,
@@ -155,7 +151,6 @@ export default [
155151
fabric: 'fabric',
156152
westures: 'westures',
157153
},
158-
plugins: [terser({ maxWorkers: 4 })],
159154
minify: true,
160155
},
161156
],

0 commit comments

Comments
 (0)