Add node:fs/promises to browser field in package.json (fixes #139)

This commit is contained in:
Vanilagy
2025-09-21 18:50:47 +02:00
parent de28817895
commit 34c01fbb10
3 changed files with 10 additions and 9 deletions
+3 -2
View File
@@ -1,7 +1,7 @@
{
"name": "mediabunny",
"author": "Vanilagy",
"version": "1.18.0",
"version": "1.18.1",
"description": "Pure TypeScript media toolkit for reading, writing, and converting media files, directly in the browser.",
"type": "module",
"workspaces": [
@@ -24,7 +24,8 @@
],
"browser": {
"./dist/modules/src/node.js": false,
"./src/node.ts": false
"./src/node.ts": false,
"node:fs/promises": false
},
"sideEffects": false,
"scripts": {