Everything worked fine, then I add a Shopify Web pixel extension from the tutorial… It seems to work as expected. Then (probably something updated, or some cache cleaned) when I run shopify app dev the log shows (below). Therefore shopify app deploy fails… (because it has errors). This means that I cannot deploy the changes in the extension, because of this error: (https://community.shopify.com/post/1958542). If I go back to another branche (before adding the pixel) everything is fine…
I followed the tutorial. I am totally a noob in node or I don’t know much about shopify apps. But I have the idea that it has something to do with a setting somewhere or a version.
node version I tried :
v18.20.7 and also
v22.14.0
shopify version
3.76.2
I tried restarting.
yarn install
What do these error means, and why do they suddenly pop-up, and how can I resolve them?
My package.json (of the extension)
{
"name": "fa-web-pixel",
"version": "1.0.0",
"main": "dist/main.js",
"license": "UNLICENSED",
"dependencies": {
"@shopify/web-pixels-extension": "^2.10.0"
}
}
12:50:02 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:crypto"
12:50:02 │ fa-web-pixel │
12:50:02 │ fa-web-pixel │ node_modules/@remix-run/node/dist/sessions/fileStorage.js:15:21:
12:50:02 │ fa-web-pixel │ 15 │ var crypto = require('node:crypto');
12:50:02 │ fa-web-pixel │ ╵ ~~~~~~~~~~~~~
12:50:02 │ fa-web-pixel │
12:50:02 │ fa-web-pixel │ The package "node:crypto" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:02 │ fa-web-pixel │
12:50:02 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:fs"
12:50:02 │ fa-web-pixel │
12:50:02 │ fa-web-pixel │ node_modules/@remix-run/node/dist/sessions/fileStorage.js:16:22:
12:50:02 │ fa-web-pixel │ 16 │ var node_fs = require('node:fs');
12:50:02 │ fa-web-pixel │ ╵ ~~~~~~~~~
12:50:02 │ fa-web-pixel │
12:50:02 │ fa-web-pixel │ The package "node:fs" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:02 │ fa-web-pixel │
12:50:02 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:path"
12:50:02 │ fa-web-pixel │
12:50:02 │ fa-web-pixel │ node_modules/@remix-run/node/dist/sessions/fileStorage.js:17:19:
12:50:02 │ fa-web-pixel │ 17 │ var path = require('node:path');
12:50:02 │ fa-web-pixel │ ╵ ~~~~~~~~~~~
12:50:02 │ fa-web-pixel │
12:50:02 │ fa-web-pixel │ The package "node:path" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:02 │ fa-web-pixel │
12:50:02 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:stream"
12:50:02 │ fa-web-pixel │
12:50:02 │ fa-web-pixel │ node_modules/@remix-run/node/dist/stream.js:15:26:
12:50:02 │ fa-web-pixel │ 15 │ var node_stream = require('node:stream');
12:50:02 │ fa-web-pixel │ ╵ ~~~~~~~~~~~~~
12:50:02 │ fa-web-pixel │
12:50:02 │ fa-web-pixel │ The package "node:stream" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:02 │ fa-web-pixel │
12:50:02 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:crypto"
12:50:02 │ fa-web-pixel │
12:50:02 │ fa-web-pixel │ node_modules/@remix-run/node/dist/upload/fileUploadHandler.js:15:21:
12:50:02 │ fa-web-pixel │ 15 │ var crypto = require('node:crypto');
12:50:02 │ fa-web-pixel │ ╵ ~~~~~~~~~~~~~
12:50:02 │ fa-web-pixel │
12:50:02 │ fa-web-pixel │ The package "node:crypto" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:02 │ fa-web-pixel │
12:50:02 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:fs"
12:50:02 │ fa-web-pixel │
12:50:02 │ fa-web-pixel │ node_modules/@remix-run/node/dist/upload/fileUploadHandler.js:16:22:
12:50:02 │ fa-web-pixel │ 16 │ var node_fs = require('node:fs');
12:50:02 │ fa-web-pixel │ ╵ ~~~~~~~~~
12:50:02 │ fa-web-pixel │
12:50:02 │ fa-web-pixel │ The package "node:fs" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:02 │ fa-web-pixel │
12:50:02 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:fs/promises"
12:50:02 │ fa-web-pixel │
12:50:02 │ fa-web-pixel │ node_modules/@remix-run/node/dist/upload/fileUploadHandler.js:17:23:
12:50:02 │ fa-web-pixel │ 17 │ var promises = require('node:fs/promises');
12:50:02 │ fa-web-pixel │ ╵ ~~~~~~~~~~~~~~~~~~
12:50:02 │ fa-web-pixel │
12:50:02 │ fa-web-pixel │ The package "node:fs/promises" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:02 │ fa-web-pixel │
12:50:02 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:os"
12:50:02 │ fa-web-pixel │
12:50:02 │ fa-web-pixel │ node_modules/@remix-run/node/dist/upload/fileUploadHandler.js:18:22:
12:50:02 │ fa-web-pixel │ 18 │ var node_os = require('node:os');
12:50:02 │ fa-web-pixel │ ╵ ~~~~~~~~~
12:50:02 │ fa-web-pixel │
12:50:02 │ fa-web-pixel │ The package "node:os" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:02 │ fa-web-pixel │
12:50:02 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:path"
12:50:02 │ fa-web-pixel │
12:50:02 │ fa-web-pixel │ node_modules/@remix-run/node/dist/upload/fileUploadHandler.js:19:19:
12:50:02 │ fa-web-pixel │ 19 │ var path = require('node:path');
12:50:02 │ fa-web-pixel │ ╵ ~~~~~~~~~~~
12:50:02 │ fa-web-pixel │
12:50:02 │ fa-web-pixel │ The package "node:path" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:02 │ fa-web-pixel │
12:50:02 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:stream"
12:50:02 │ fa-web-pixel │
12:50:02 │ fa-web-pixel │ node_modules/@remix-run/node/dist/upload/fileUploadHandler.js:20:26:
12:50:02 │ fa-web-pixel │ 20 │ var node_stream = require('node:stream');
12:50:02 │ fa-web-pixel │ ╵ ~~~~~~~~~~~~~
12:50:02 │ fa-web-pixel │
12:50:02 │ fa-web-pixel │ The package "node:stream" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:02 │ fa-web-pixel │
12:50:02 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:util"
12:50:02 │ fa-web-pixel │
12:50:02 │ fa-web-pixel │ node_modules/@remix-run/node/dist/upload/fileUploadHandler.js:21:24:
12:50:02 │ fa-web-pixel │ 21 │ var node_util = require('node:util');
12:50:02 │ fa-web-pixel │ ╵ ~~~~~~~~~~~
12:50:02 │ fa-web-pixel │
12:50:02 │ fa-web-pixel │ The package "node:util" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:02 │ fa-web-pixel │
12:50:02 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "crypto"
12:50:02 │ fa-web-pixel │
12:50:02 │ fa-web-pixel │ node_modules/cookie-signature/index.js:5:21:
12:50:02 │ fa-web-pixel │ 5 │ var crypto = require('crypto');
12:50:02 │ fa-web-pixel │ ╵ ~~~~~~~~
12:50:02 │ fa-web-pixel │
12:50:02 │ fa-web-pixel │ The package "crypto" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:02 │ fa-web-pixel │
12:50:02 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "stream"
12:50:02 │ fa-web-pixel │
12:50:02 │ fa-web-pixel │ node_modules/stream-slice/index.js:3:24:
12:50:02 │ fa-web-pixel │ 3 │ var Transform = require('stream').Transform;
12:50:02 │ fa-web-pixel │ ╵ ~~~~~~~~
12:50:02 │ fa-web-pixel │
12:50:02 │ fa-web-pixel │ The package "stream" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:02 │ fa-web-pixel │
12:50:02 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:buffer"
12:50:02 │ fa-web-pixel │
12:50:02 │ fa-web-pixel │ node_modules/undici/index.js:123:49:
12:50:02 │ fa-web-pixel │ 123 │ module.exports.File = globalThis.File ?? require('node:buffer').File
12:50:02 │ fa-web-pixel │ ╵ ~~~~~~~~~~~~~
12:50:02 │ fa-web-pixel │
12:50:02 │ fa-web-pixel │ The package "node:buffer" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:02 │ fa-web-pixel │
12:50:02 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:assert"
12:50:02 │ fa-web-pixel │
12:50:02 │ fa-web-pixel │ node_modules/undici/lib/api/api-connect.js:3:23:
12:50:02 │ fa-web-pixel │ 3 │ const assert = require('node:assert')
12:50:02 │ fa-web-pixel │ ╵ ~~~~~~~~~~~~~
12:50:02 │ fa-web-pixel │
12:50:02 │ fa-web-pixel │ The package "node:assert" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:02 │ fa-web-pixel │
12:50:02 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:async_hooks"
12:50:02 │ fa-web-pixel │
12:50:02 │ fa-web-pixel │ node_modules/undici/lib/api/api-connect.js:4:34:
12:50:02 │ fa-web-pixel │ 4 │ const { AsyncResource } = require('node:async_hooks')
12:50:02 │ fa-web-pixel │ ╵ ~~~~~~~~~~~~~~~~~~
12:50:02 │ fa-web-pixel │
12:50:02 │ fa-web-pixel │ The package "node:async_hooks" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:02 │ fa-web-pixel │
12:50:02 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:stream"
12:50:02 │ fa-web-pixel │
12:50:02 │ fa-web-pixel │ node_modules/undici/lib/api/api-pipeline.js:7:12:
12:50:02 │ fa-web-pixel │ 7 │ } = require('node:stream')
12:50:02 │ fa-web-pixel │ ╵ ~~~~~~~~~~~~~
12:50:02 │ fa-web-pixel │
12:50:02 │ fa-web-pixel │ The package "node:stream" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:02 │ fa-web-pixel │
12:50:02 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:async_hooks"
12:50:02 │ fa-web-pixel │
12:50:02 │ fa-web-pixel │ node_modules/undici/lib/api/api-pipeline.js:14:34:
12:50:02 │ fa-web-pixel │ 14 │ const { AsyncResource } = require('node:async_hooks')
12:50:02 │ fa-web-pixel │ ╵ ~~~~~~~~~~~~~~~~~~
12:50:02 │ fa-web-pixel │
12:50:02 │ fa-web-pixel │ The package "node:async_hooks" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:02 │ fa-web-pixel │
12:50:02 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:assert"
12:50:02 │ fa-web-pixel │
12:50:02 │ fa-web-pixel │ node_modules/undici/lib/api/api-pipeline.js:16:23:
12:50:02 │ fa-web-pixel │ 16 │ const assert = require('node:assert')
12:50:02 │ fa-web-pixel │ ╵ ~~~~~~~~~~~~~
12:50:02 │ fa-web-pixel │
12:50:02 │ fa-web-pixel │ The package "node:assert" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:02 │ fa-web-pixel │
12:50:02 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:assert"
12:50:02 │ fa-web-pixel │
12:50:02 │ fa-web-pixel │ node_modules/undici/lib/api/api-request.js:3:23:
12:50:02 │ fa-web-pixel │ 3 │ const assert = require('node:assert')
12:50:02 │ fa-web-pixel │ ╵ ~~~~~~~~~~~~~
12:50:02 │ fa-web-pixel │
12:50:02 │ fa-web-pixel │ The package "node:assert" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:02 │ fa-web-pixel │
12:50:02 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:async_hooks"
12:50:02 │ fa-web-pixel │
12:50:02 │ fa-web-pixel │ node_modules/undici/lib/api/api-request.js:8:34:
12:50:02 │ fa-web-pixel │ 8 │ const { AsyncResource } = require('node:async_hooks')
12:50:02 │ fa-web-pixel │ ╵ ~~~~~~~~~~~~~~~~~~
12:50:02 │ fa-web-pixel │
12:50:02 │ fa-web-pixel │ The package "node:async_hooks" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:02 │ fa-web-pixel │
12:50:02 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:assert"
12:50:02 │ fa-web-pixel │
12:50:02 │ fa-web-pixel │ node_modules/undici/lib/api/api-stream.js:3:23:
12:50:02 │ fa-web-pixel │ 3 │ const assert = require('node:assert')
12:50:02 │ fa-web-pixel │ ╵ ~~~~~~~~~~~~~
12:50:02 │ fa-web-pixel │
12:50:02 │ fa-web-pixel │ The package "node:assert" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:02 │ fa-web-pixel │
12:50:02 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:stream"
12:50:02 │ fa-web-pixel │
12:50:02 │ fa-web-pixel │ node_modules/undici/lib/api/api-stream.js:4:42:
12:50:02 │ fa-web-pixel │ 4 │ const { finished, PassThrough } = require('node:stream')
12:50:02 │ fa-web-pixel │ ╵ ~~~~~~~~~~~~~
12:50:02 │ fa-web-pixel │
12:50:02 │ fa-web-pixel │ The package "node:stream" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:02 │ fa-web-pixel │
12:50:02 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:async_hooks"
12:50:02 │ fa-web-pixel │
12:50:02 │ fa-web-pixel │ node_modules/undici/lib/api/api-stream.js:8:34:
12:50:02 │ fa-web-pixel │ 8 │ const { AsyncResource } = require('node:async_hooks')
12:50:02 │ fa-web-pixel │ ╵ ~~~~~~~~~~~~~~~~~~
12:50:02 │ fa-web-pixel │
12:50:02 │ fa-web-pixel │ The package "node:async_hooks" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:02 │ fa-web-pixel │
12:50:02 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:async_hooks"
12:50:02 │ fa-web-pixel │
12:50:02 │ fa-web-pixel │ node_modules/undici/lib/api/api-upgrade.js:4:34:
12:50:02 │ fa-web-pixel │ 4 │ const { AsyncResource } = require('node:async_hooks')
12:50:02 │ fa-web-pixel │ ╵ ~~~~~~~~~~~~~~~~~~
12:50:02 │ fa-web-pixel │
12:50:02 │ fa-web-pixel │ The package "node:async_hooks" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:02 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:assert"
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ node_modules/undici/lib/api/api-upgrade.js:7:23:
12:50:03 │ fa-web-pixel │ 7 │ const assert = require('node:assert')
12:50:03 │ fa-web-pixel │ ╵ ~~~~~~~~~~~~~
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ The package "node:assert" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:assert"
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ node_modules/undici/lib/api/readable.js:5:23:
12:50:03 │ fa-web-pixel │ 5 │ const assert = require('node:assert')
12:50:03 │ fa-web-pixel │ ╵ ~~~~~~~~~~~~~
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ The package "node:assert" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:stream"
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ node_modules/undici/lib/api/readable.js:6:29:
12:50:03 │ fa-web-pixel │ 6 │ const { Readable } = require('node:stream')
12:50:03 │ fa-web-pixel │ ╵ ~~~~~~~~~~~~~
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ The package "node:stream" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:assert"
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ node_modules/undici/lib/api/util.js:1:23:
12:50:03 │ fa-web-pixel │ 1 │ const assert = require('node:assert')
12:50:03 │ fa-web-pixel │ ╵ ~~~~~~~~~~~~~
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ The package "node:assert" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:net"
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ node_modules/undici/lib/core/connect.js:3:20:
12:50:03 │ fa-web-pixel │ 3 │ const net = require('node:net')
12:50:03 │ fa-web-pixel │ ╵ ~~~~~~~~~~
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ The package "node:net" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:assert"
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ node_modules/undici/lib/core/connect.js:4:23:
12:50:03 │ fa-web-pixel │ 4 │ const assert = require('node:assert')
12:50:03 │ fa-web-pixel │ ╵ ~~~~~~~~~~~~~
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ The package "node:assert" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:tls"
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ node_modules/undici/lib/core/connect.js:92:22:
12:50:03 │ fa-web-pixel │ 92 │ tls = require('node:tls')
12:50:03 │ fa-web-pixel │ ╵ ~~~~~~~~~~
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ The package "node:tls" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:diagnostics_channel"
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ node_modules/undici/lib/core/diagnostics.js:2:35:
12:50:03 │ fa-web-pixel │ 2 │ const diagnosticsChannel = require('node:diagnostics_channel')
12:50:03 │ fa-web-pixel │ ╵ ~~~~~~~~~~~~~~~~~~~~~~~~~~
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ The package "node:diagnostics_channel" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:util"
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ node_modules/undici/lib/core/diagnostics.js:3:21:
12:50:03 │ fa-web-pixel │ 3 │ const util = require('node:util')
12:50:03 │ fa-web-pixel │ ╵ ~~~~~~~~~~~
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ The package "node:util" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:assert"
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ node_modules/undici/lib/core/request.js:7:23:
12:50:03 │ fa-web-pixel │ 7 │ const assert = require('node:assert')
12:50:03 │ fa-web-pixel │ ╵ ~~~~~~~~~~~~~
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ The package "node:assert" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:assert"
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ node_modules/undici/lib/core/util.js:3:23:
12:50:03 │ fa-web-pixel │ 3 │ const assert = require('node:assert')
12:50:03 │ fa-web-pixel │ ╵ ~~~~~~~~~~~~~
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ The package "node:assert" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:http"
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ node_modules/undici/lib/core/util.js:5:36:
12:50:03 │ fa-web-pixel │ 5 │ const { IncomingMessage } = require('node:http')
12:50:03 │ fa-web-pixel │ ╵ ~~~~~~~~~~~
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ The package "node:http" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:stream"
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ node_modules/undici/lib/core/util.js:6:23:
12:50:03 │ fa-web-pixel │ 6 │ const stream = require('node:stream')
12:50:03 │ fa-web-pixel │ ╵ ~~~~~~~~~~~~~
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ The package "node:stream" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:net"
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ node_modules/undici/lib/core/util.js:7:20:
12:50:03 │ fa-web-pixel │ 7 │ const net = require('node:net')
12:50:03 │ fa-web-pixel │ ╵ ~~~~~~~~~~
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ The package "node:net" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:buffer"
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ node_modules/undici/lib/core/util.js:8:25:
12:50:03 │ fa-web-pixel │ 8 │ const { Blob } = require('node:buffer')
12:50:03 │ fa-web-pixel │ ╵ ~~~~~~~~~~~~~
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ The package "node:buffer" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:util"
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ node_modules/undici/lib/core/util.js:9:25:
12:50:03 │ fa-web-pixel │ 9 │ const nodeUtil = require('node:util')
12:50:03 │ fa-web-pixel │ ╵ ~~~~~~~~~~~
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ The package "node:util" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:querystring"
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ node_modules/undici/lib/core/util.js:10:30:
12:50:03 │ fa-web-pixel │ 10 │ const { stringify } = require('node:querystring')
12:50:03 │ fa-web-pixel │ ╵ ~~~~~~~~~~~~~~~~~~
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ The package "node:querystring" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:events"
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ node_modules/undici/lib/core/util.js:11:37:
12:50:03 │ fa-web-pixel │ 11 │ const { EventEmitter: EE } = require('node:events')
12:50:03 │ fa-web-pixel │ ╵ ~~~~~~~~~~~~~
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ The package "node:events" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:assert"
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ node_modules/undici/lib/dispatcher/client-h1.js:5:23:
12:50:03 │ fa-web-pixel │ 5 │ const assert = require('node:assert')
12:50:03 │ fa-web-pixel │ ╵ ~~~~~~~~~~~~~
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ The package "node:assert" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:assert"
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ node_modules/undici/lib/dispatcher/client-h2.js:3:23:
12:50:03 │ fa-web-pixel │ 3 │ const assert = require('node:assert')
12:50:03 │ fa-web-pixel │ ╵ ~~~~~~~~~~~~~
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ The package "node:assert" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:stream"
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ node_modules/undici/lib/dispatcher/client-h2.js:4:29:
12:50:03 │ fa-web-pixel │ 4 │ const { pipeline } = require('node:stream')
12:50:03 │ fa-web-pixel │ ╵ ~~~~~~~~~~~~~
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ The package "node:stream" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:assert"
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ node_modules/undici/lib/dispatcher/client.js:5:23:
12:50:03 │ fa-web-pixel │ 5 │ const assert = require('node:assert')
12:50:03 │ fa-web-pixel │ ╵ ~~~~~~~~~~~~~
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ The package "node:assert" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:net"
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ node_modules/undici/lib/dispatcher/client.js:6:20:
12:50:03 │ fa-web-pixel │ 6 │ const net = require('node:net')
12:50:03 │ fa-web-pixel │ ╵ ~~~~~~~~~~
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ The package "node:net" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:http"
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ node_modules/undici/lib/dispatcher/client.js:7:21:
12:50:03 │ fa-web-pixel │ 7 │ const http = require('node:http')
12:50:03 │ fa-web-pixel │ ╵ ~~~~~~~~~~~
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ The package "node:http" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:events"
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ node_modules/undici/lib/dispatcher/dispatcher.js:2:29:
12:50:03 │ fa-web-pixel │ 2 │ const EventEmitter = require('node:events')
12:50:03 │ fa-web-pixel │ ╵ ~~~~~~~~~~~~~
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ The package "node:events" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:url"
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ node_modules/undici/lib/dispatcher/proxy-agent.js:4:24:
12:50:03 │ fa-web-pixel │ 4 │ const { URL } = require('node:url')
12:50:03 │ fa-web-pixel │ ╵ ~~~~~~~~~~
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ The package "node:url" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:assert"
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ node_modules/undici/lib/handler/redirect-handler.js:5:23:
12:50:03 │ fa-web-pixel │ 5 │ const assert = require('node:assert')
12:50:03 │ fa-web-pixel │ ╵ ~~~~~~~~~~~~~
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ The package "node:assert" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:events"
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ node_modules/undici/lib/handler/redirect-handler.js:7:19:
12:50:03 │ fa-web-pixel │ 7 │ const EE = require('node:events')
12:50:03 │ fa-web-pixel │ ╵ ~~~~~~~~~~~~~
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ The package "node:events" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:assert"
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ node_modules/undici/lib/handler/retry-handler.js:2:23:
12:50:03 │ fa-web-pixel │ 2 │ const assert = require('node:assert')
12:50:03 │ fa-web-pixel │ ╵ ~~~~~~~~~~~~~
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ The package "node:assert" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:net"
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ node_modules/undici/lib/interceptor/dns.js:2:25:
12:50:03 │ fa-web-pixel │ 2 │ const { isIP } = require('node:net')
12:50:03 │ fa-web-pixel │ ╵ ~~~~~~~~~~
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ The package "node:net" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:dns"
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ node_modules/undici/lib/interceptor/dns.js:3:27:
12:50:03 │ fa-web-pixel │ 3 │ const { lookup } = require('node:dns')
12:50:03 │ fa-web-pixel │ ╵ ~~~~~~~~~~
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ The package "node:dns" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:buffer"
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ node_modules/undici/lib/llhttp/llhttp-wasm.js:3:27:
12:50:03 │ fa-web-pixel │ 3 │ const { Buffer } = require('node:buffer')
12:50:03 │ fa-web-pixel │ ╵ ~~~~~~~~~~~~~
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ The package "node:buffer" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:buffer"
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ node_modules/undici/lib/llhttp/llhttp_simd-wasm.js:3:27:
12:50:03 │ fa-web-pixel │ 3 │ const { Buffer } = require('node:buffer')
12:50:03 │ fa-web-pixel │ ╵ ~~~~~~~~~~~~~
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ The package "node:buffer" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:util"
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ node_modules/undici/lib/mock/mock-client.js:3:30:
12:50:03 │ fa-web-pixel │ 3 │ const { promisify } = require('node:util')
12:50:03 │ fa-web-pixel │ ╵ ~~~~~~~~~~~
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ The package "node:util" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:util"
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ node_modules/undici/lib/mock/mock-pool.js:3:30:
12:50:03 │ fa-web-pixel │ 3 │ const { promisify } = require('node:util')
12:50:03 │ fa-web-pixel │ ╵ ~~~~~~~~~~~
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ The package "node:util" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:http"
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ node_modules/undici/lib/mock/mock-utils.js:12:33:
12:50:03 │ fa-web-pixel │ 12 │ const { STATUS_CODES } = require('node:http')
12:50:03 │ fa-web-pixel │ ╵ ~~~~~~~~~~~
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ The package "node:http" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:util"
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ node_modules/undici/lib/mock/mock-utils.js:17:12:
12:50:03 │ fa-web-pixel │ 17 │ } = require('node:util')
12:50:03 │ fa-web-pixel │ ╵ ~~~~~~~~~~~
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ The package "node:util" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:stream"
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ node_modules/undici/lib/mock/pending-interceptors-formatter.js:3:30:
12:50:03 │ fa-web-pixel │ 3 │ const { Transform } = require('node:stream')
12:50:03 │ fa-web-pixel │ ╵ ~~~~~~~~~~~~~
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ The package "node:stream" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:console"
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ node_modules/undici/lib/mock/pending-interceptors-formatter.js:4:28:
12:50:03 │ fa-web-pixel │ 4 │ const { Console } = require('node:console')
12:50:03 │ fa-web-pixel │ ╵ ~~~~~~~~~~~~~~
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ The package "node:console" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:assert"
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ node_modules/undici/lib/web/cache/cache.js:12:23:
12:50:03 │ fa-web-pixel │ 12 │ const assert = require('node:assert')
12:50:03 │ fa-web-pixel │ ╵ ~~~~~~~~~~~~~
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ The package "node:assert" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:assert"
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ node_modules/undici/lib/web/cache/util.js:3:23:
12:50:03 │ fa-web-pixel │ 3 │ const assert = require('node:assert')
12:50:03 │ fa-web-pixel │ ╵ ~~~~~~~~~~~~~
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ The package "node:assert" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:assert"
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ node_modules/undici/lib/web/cookies/parse.js:6:23:
12:50:03 │ fa-web-pixel │ 6 │ const assert = require('node:assert')
12:50:03 │ fa-web-pixel │ ╵ ~~~~~~~~~~~~~
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ The package "node:assert" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:stream"
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ node_modules/undici/lib/web/eventsource/eventsource-stream.js:2:30:
12:50:03 │ fa-web-pixel │ 2 │ const { Transform } = require('node:stream')
12:50:03 │ fa-web-pixel │ ╵ ~~~~~~~~~~~~~
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ The package "node:stream" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:stream"
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ node_modules/undici/lib/web/eventsource/eventsource.js:3:29:
12:50:03 │ fa-web-pixel │ 3 │ const { pipeline } = require('node:stream')
12:50:03 │ fa-web-pixel │ ╵ ~~~~~~~~~~~~~
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ The package "node:stream" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:buffer"
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ node_modules/undici/lib/web/fetch/body.js:17:25:
12:50:03 │ fa-web-pixel │ 17 │ const { Blob } = require('node:buffer')
12:50:03 │ fa-web-pixel │ ╵ ~~~~~~~~~~~~~
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ The package "node:buffer" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:assert"
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ node_modules/undici/lib/web/fetch/body.js:18:23:
12:50:03 │ fa-web-pixel │ 18 │ const assert = require('node:assert')
12:50:03 │ fa-web-pixel │ ╵ ~~~~~~~~~~~~~
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ The package "node:assert" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:stream"
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ node_modules/undici/lib/web/fetch/body.js:19:43:
12:50:03 │ fa-web-pixel │ 19 │ const { isErrored, isDisturbed } = require('node:stream')
12:50:03 │ fa-web-pixel │ ╵ ~~~~~~~~~~~~~
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ The package "node:stream" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:util/types"
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ node_modules/undici/lib/web/fetch/body.js:20:34:
12:50:03 │ fa-web-pixel │ 20 │ const { isArrayBuffer } = require('node:util/types')
12:50:03 │ fa-web-pixel │ ╵ ~~~~~~~~~~~~~~~~~
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ The package "node:util/types" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:assert"
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ node_modules/undici/lib/web/fetch/data-url.js:3:23:
12:50:03 │ fa-web-pixel │ 3 │ const assert = require('node:assert')
12:50:03 │ fa-web-pixel │ ╵ ~~~~~~~~~~~~~
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ The package "node:assert" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:buffer"
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ node_modules/undici/lib/web/fetch/file.js:3:31:
12:50:03 │ fa-web-pixel │ 3 │ const { Blob, File } = require('node:buffer')
12:50:03 │ fa-web-pixel │ ╵ ~~~~~~~~~~~~~
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ The package "node:buffer" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:assert"
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ node_modules/undici/lib/web/fetch/formdata-parser.js:8:23:
12:50:03 │ fa-web-pixel │ 8 │ const assert = require('node:assert')
12:50:03 │ fa-web-pixel │ ╵ ~~~~~~~~~~~~~
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ The package "node:assert" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:buffer"
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ node_modules/undici/lib/web/fetch/formdata-parser.js:9:35:
12:50:03 │ fa-web-pixel │ 9 │ const { File: NodeFile } = require('node:buffer')
12:50:03 │ fa-web-pixel │ ╵ ~~~~~~~~~~~~~
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ The package "node:buffer" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:buffer"
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ node_modules/undici/lib/web/fetch/formdata.js:8:37:
12:50:03 │ fa-web-pixel │ 8 │ const { File: NativeFile } = require('node:buffer')
12:50:03 │ fa-web-pixel │ ╵ ~~~~~~~~~~~~~
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ The package "node:buffer" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:util"
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ node_modules/undici/lib/web/fetch/formdata.js:9:25:
12:50:03 │ fa-web-pixel │ 9 │ const nodeUtil = require('node:util')
12:50:03 │ fa-web-pixel │ ╵ ~~~~~~~~~~~
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ The package "node:util" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:assert"
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ node_modules/undici/lib/web/fetch/headers.js:13:23:
12:50:03 │ fa-web-pixel │ 13 │ const assert = require('node:assert')
12:50:03 │ fa-web-pixel │ ╵ ~~~~~~~~~~~~~
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ The package "node:assert" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:util"
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ node_modules/undici/lib/web/fetch/headers.js:14:21:
12:50:03 │ fa-web-pixel │ 14 │ const util = require('node:util')
12:50:03 │ fa-web-pixel │ ╵ ~~~~~~~~~~~
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ The package "node:util" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:zlib"
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ node_modules/undici/lib/web/fetch/index.js:14:21:
12:50:03 │ fa-web-pixel │ 14 │ const zlib = require('node:zlib')
12:50:03 │ fa-web-pixel │ ╵ ~~~~~~~~~~~
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ The package "node:zlib" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:assert"
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ node_modules/undici/lib/web/fetch/index.js:51:23:
12:50:03 │ fa-web-pixel │ 51 │ const assert = require('node:assert')
12:50:03 │ fa-web-pixel │ ╵ ~~~~~~~~~~~~~
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ The package "node:assert" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:events"
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ node_modules/undici/lib/web/fetch/index.js:60:19:
12:50:03 │ fa-web-pixel │ 60 │ const EE = require('node:events')
12:50:03 │ fa-web-pixel │ ╵ ~~~~~~~~~~~~~
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ The package "node:events" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:stream"
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ node_modules/undici/lib/web/fetch/index.js:61:49:
12:50:03 │ fa-web-pixel │ 61 │ const { Readable, pipeline, finished } = require('node:stream')
12:50:03 │ fa-web-pixel │ ╵ ~~~~~~~~~~~~~
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ The package "node:stream" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:http"
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ node_modules/undici/lib/web/fetch/index.js:66:33:
12:50:03 │ fa-web-pixel │ 66 │ const { STATUS_CODES } = require('node:http')
12:50:03 │ fa-web-pixel │ ╵ ~~~~~~~~~~~
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ The package "node:http" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:buffer"
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ node_modules/undici/lib/web/fetch/index.js:797:35:
12:50:03 │ fa-web-pixel │ 797 │ resolveObjectURL = require('node:buffer').resolveObjectURL
12:50:03 │ fa-web-pixel │ ╵ ~~~~~~~~~~~~~
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ The package "node:buffer" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:util"
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ node_modules/undici/lib/web/fetch/request.js:9:25:
12:50:03 │ fa-web-pixel │ 9 │ const nodeUtil = require('node:util')
12:50:03 │ fa-web-pixel │ ╵ ~~~~~~~~~~~
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ The package "node:util" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:assert"
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ node_modules/undici/lib/web/fetch/request.js:30:23:
12:50:03 │ fa-web-pixel │ 30 │ const assert = require('node:assert')
12:50:03 │ fa-web-pixel │ ╵ ~~~~~~~~~~~~~
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ The package "node:assert" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:events"
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ node_modules/undici/lib/web/fetch/request.js:31:93:
12:50:03 │ fa-web-pixel │ 31 │ ... getEventListeners, defaultMaxListeners } = require('node:events')
12:50:03 │ fa-web-pixel │ ╵ ~~~~~~~~~~~~~
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ The package "node:events" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:util"
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ node_modules/undici/lib/web/fetch/response.js:6:25:
12:50:03 │ fa-web-pixel │ 6 │ const nodeUtil = require('node:util')
12:50:03 │ fa-web-pixel │ ╵ ~~~~~~~~~~~
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ The package "node:util" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:assert"
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ node_modules/undici/lib/web/fetch/response.js:27:23:
12:50:03 │ fa-web-pixel │ 27 │ const assert = require('node:assert')
12:50:03 │ fa-web-pixel │ ╵ ~~~~~~~~~~~~~
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ The package "node:assert" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:stream"
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ node_modules/undici/lib/web/fetch/util.js:3:30:
12:50:03 │ fa-web-pixel │ 3 │ const { Transform } = require('node:stream')
12:50:03 │ fa-web-pixel │ ╵ ~~~~~~~~~~~~~
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ The package "node:stream" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:zlib"
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ node_modules/undici/lib/web/fetch/util.js:4:21:
12:50:03 │ fa-web-pixel │ 4 │ const zlib = require('node:zlib')
12:50:03 │ fa-web-pixel │ ╵ ~~~~~~~~~~~
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ The package "node:zlib" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:perf_hooks"
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ node_modules/undici/lib/web/fetch/util.js:8:32:
12:50:03 │ fa-web-pixel │ 8 │ const { performance } = require('node:perf_hooks')
12:50:03 │ fa-web-pixel │ ╵ ~~~~~~~~~~~~~~~~~
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ The package "node:perf_hooks" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:assert"
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ node_modules/undici/lib/web/fetch/util.js:10:23:
12:50:03 │ fa-web-pixel │ 10 │ const assert = require('node:assert')
12:50:03 │ fa-web-pixel │ ╵ ~~~~~~~~~~~~~
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ The package "node:assert" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:util/types"
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ node_modules/undici/lib/web/fetch/util.js:11:33:
12:50:03 │ fa-web-pixel │ 11 │ const { isUint8Array } = require('node:util/types')
12:50:03 │ fa-web-pixel │ ╵ ~~~~~~~~~~~~~~~~~
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ The package "node:util/types" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:util"
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ node_modules/undici/lib/web/fetch/webidl.js:3:35:
12:50:03 │ fa-web-pixel │ 3 │ const { types, inspect } = require('node:util')
12:50:03 │ fa-web-pixel │ ╵ ~~~~~~~~~~~
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ The package "node:util" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:worker_threads"
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ node_modules/undici/lib/web/fetch/webidl.js:4:38:
12:50:03 │ fa-web-pixel │ 4 │ const { markAsUncloneable } = require('node:worker_threads')
12:50:03 │ fa-web-pixel │ ╵ ~~~~~~~~~~~~~~~~~~~~~
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ The package "node:worker_threads" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:util"
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ node_modules/undici/lib/web/fileapi/util.js:13:26:
12:50:03 │ fa-web-pixel │ 13 │ const { types } = require('node:util')
12:50:03 │ fa-web-pixel │ ╵ ~~~~~~~~~~~
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ The package "node:util" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:buffer"
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ node_modules/undici/lib/web/fileapi/util.js:15:25:
12:50:03 │ fa-web-pixel │ 15 │ const { btoa } = require('node:buffer')
12:50:03 │ fa-web-pixel │ ╵ ~~~~~~~~~~~~~
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ The package "node:buffer" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:worker_threads"
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ node_modules/undici/lib/web/websocket/events.js:6:32:
12:50:03 │ fa-web-pixel │ 6 │ const { MessagePort } = require('node:worker_threads')
12:50:03 │ fa-web-pixel │ ╵ ~~~~~~~~~~~~~~~~~~~~~
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ The package "node:worker_threads" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:zlib"
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ node_modules/undici/lib/web/websocket/permessage-deflate.js:3:59:
12:50:03 │ fa-web-pixel │ 3 │ ...t { createInflateRaw, Z_DEFAULT_WINDOWBITS } = require('node:zlib')
12:50:03 │ fa-web-pixel │ ╵ ~~~~~~~~~~~
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ The package "node:zlib" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:stream"
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ node_modules/undici/lib/web/websocket/receiver.js:3:29:
12:50:03 │ fa-web-pixel │ 3 │ const { Writable } = require('node:stream')
12:50:03 │ fa-web-pixel │ ╵ ~~~~~~~~~~~~~
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ The package "node:stream" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:assert"
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ node_modules/undici/lib/web/websocket/receiver.js:4:23:
12:50:03 │ fa-web-pixel │ 4 │ const assert = require('node:assert')
12:50:03 │ fa-web-pixel │ ╵ ~~~~~~~~~~~~~
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ The package "node:assert" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:buffer"
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ node_modules/undici/lib/web/websocket/util.js:6:27:
12:50:03 │ fa-web-pixel │ 6 │ const { isUtf8 } = require('node:buffer')
12:50:03 │ fa-web-pixel │ ╵ ~~~~~~~~~~~~~
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ The package "node:buffer" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ ✘ [ERROR] Could not resolve "node:util"
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ node_modules/undici/lib/web/websocket/websocket.js:27:26:
12:50:03 │ fa-web-pixel │ 27 │ const { types } = require('node:util')
12:50:03 │ fa-web-pixel │ ╵ ~~~~~~~~~~~
12:50:03 │ fa-web-pixel │
12:50:03 │ fa-web-pixel │ The package "node:util" wasn't found on the file system but is built into node. Are you trying to bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
12:50:03 │ fa-web-pixel │