Problems with MacOS 15.2 update? - resolved, was some other lib

I updated to MacOS 15.2 this morning and just found out, that I can’t deploy with meteor-up anymore (local dev server works fine). During or right after minifying I get this:

➜ mup deploy
Cleaning Up Previous Builds
Building App Bundle Locally
Error: Couldn't parse stack frame: ''                                       
    at /Users/jan-michaelpilgenroeder/.meteor/packages/meteor-tool/.3.1.0.1un5gus.zjvm++os.osx.arm64+web.browser+web.browser.legacy+web.cordova/mt-os.osx.arm64/tools/utils/parse-stack.js:120:11
    at Array.some (<anonymous>:null:null)
    at parseStackFrames (/Users/jan-michaelpilgenroeder/.meteor/packages/meteor-tool/.3.1.0.1un5gus.zjvm++os.osx.arm64+web.browser+web.browser.legacy+web.cordova/mt-os.osx.arm64/tools/utils/parse-stack.js:61:10)
    at Object.parse (/Users/jan-michaelpilgenroeder/.meteor/packages/meteor-tool/.3.1.0.1un5gus.zjvm++os.osx.arm64+web.browser+web.browser.legacy+web.cordova/mt-os.osx.arm64/tools/utils/parse-stack.js:30:21)
    at Object.exception (/Users/jan-michaelpilgenroeder/.meteor/packages/meteor-tool/.3.1.0.1un5gus.zjvm++os.osx.arm64+web.browser+web.browser.legacy+web.cordova/mt-os.osx.arm64/tools/utils/buildmessage.js:453:29)
    at /Users/jan-michaelpilgenroeder/.meteor/packages/meteor-tool/.3.1.0.1un5gus.zjvm++os.osx.arm64+web.browser+web.browser.legacy+web.cordova/mt-os.osx.arm64/tools/isobuild/bundler.js:1340:24
    at Object.enterJob (/Users/jan-michaelpilgenroeder/.meteor/packages/meteor-tool/.3.1.0.1un5gus.zjvm++os.osx.arm64+web.browser+web.browser.legacy+web.cordova/mt-os.osx.arm64/tools/utils/buildmessage.js:325:12)
    at ClientTarget.minifyJs (/Users/jan-michaelpilgenroeder/.meteor/packages/meteor-tool/.3.1.0.1un5gus.zjvm++os.osx.arm64+web.browser+web.browser.legacy+web.cordova/mt-os.osx.arm64/tools/isobuild/bundler.js:1332:7)
    at /Users/jan-michaelpilgenroeder/.meteor/packages/meteor-tool/.3.1.0.1un5gus.zjvm++os.osx.arm64+web.browser+web.browser.legacy+web.cordova/mt-os.osx.arm64/tools/isobuild/bundler.js:874:13
    at Object.enterJob (/Users/jan-michaelpilgenroeder/.meteor/packages/meteor-tool/.3.1.0.1un5gus.zjvm++os.osx.arm64+web.browser+web.browser.legacy+web.cordova/mt-os.osx.arm64/tools/utils/buildmessage.js:325:12)
    at ClientTarget.make (/Users/jan-michaelpilgenroeder/.meteor/packages/meteor-tool/.3.1.0.1un5gus.zjvm++os.osx.arm64+web.browser+web.browser.legacy+web.cordova/mt-os.osx.arm64/tools/isobuild/bundler.js:823:7)
    at /Users/jan-michaelpilgenroeder/.meteor/packages/meteor-tool/.3.1.0.1un5gus.zjvm++os.osx.arm64+web.browser+web.browser.legacy+web.cordova/mt-os.osx.arm64/tools/isobuild/bundler.js:2925:9
    at /Users/jan-michaelpilgenroeder/.meteor/packages/meteor-tool/.3.1.0.1un5gus.zjvm++os.osx.arm64+web.browser+web.browser.legacy+web.cordova/mt-os.osx.arm64/tools/isobuild/bundler.js:3073:27
    at Object.capture (/Users/jan-michaelpilgenroeder/.meteor/packages/meteor-tool/.3.1.0.1un5gus.zjvm++os.osx.arm64+web.browser+web.browser.legacy+web.cordova/mt-os.osx.arm64/tools/utils/buildmessage.js:242:5)
    at bundle (/Users/jan-michaelpilgenroeder/.meteor/packages/meteor-tool/.3.1.0.1un5gus.zjvm++os.osx.arm64+web.browser+web.browser.legacy+web.cordova/mt-os.osx.arm64/tools/isobuild/bundler.js:2910:20)
    at buildCommand (/Users/jan-michaelpilgenroeder/.meteor/packages/meteor-tool/.3.1.0.1un5gus.zjvm++os.osx.arm64+web.browser+web.browser.legacy+web.cordova/mt-os.osx.arm64/tools/cli/commands.js:1294:22)
    at /Users/jan-michaelpilgenroeder/.meteor/packages/meteor-tool/.3.1.0.1un5gus.zjvm++os.osx.arm64+web.browser+web.browser.legacy+web.cordova/mt-os.osx.arm64/tools/cli/commands.js:1165:56
    at Command.func (/Users/jan-michaelpilgenroeder/.meteor/packages/meteor-tool/.3.1.0.1un5gus.zjvm++os.osx.arm64+web.browser+web.browser.legacy+web.cordova/mt-os.osx.arm64/tools/cli/commands.js:1165:10)
    at /Users/jan-michaelpilgenroeder/.meteor/packages/meteor-tool/.3.1.0.1un5gus.zjvm++os.osx.arm64+web.browser+web.browser.legacy+web.cordova/mt-os.osx.arm64/tools/cli/main.js:1351:15

update: its not just meteor-up, it’s meteor build

This OS has been chasing me for an update to 15.2 every single day but I stoically resisted. I am glad I did.
I left a note here: Since NodeJS 20.x on MacOS 15, address sanitizer fails on all tests. · Issue #56154 · nodejs/node · GitHub in case these are related in any way.

Will have to see, I guess, at least one more station or virtual OS having this issue before we call it … a problem.

For now maybe you could try to use Performance Profiling
and try to learn more about it or at what process exactly it fails. (meteor/tools/PERFORMANCE.md at devel · meteor/meteor · GitHub)

or the --verbose flag. From Ask AI:

"
To get verbose output during the Meteor build process, you can use the --verbose flag or set the DEBUG_CSS environment variable. Here are the details:

  1. Using the --verbose flag:

You can add the --verbose flag to your meteor build command like this:

meteor build <build-output-directory> --server=<host>:<port> --verbose
  1. Using the DEBUG_CSS environment variable:

Alternatively, you can set the DEBUG_CSS environment variable before running the build command:

DEBUG_CSS=1 meteor build <build-output-directory> --server=<host>:<port>

Both of these methods will provide more detailed output during the build process, especially for CSS-related operations.

It’s worth noting that the DEBUG_CSS environment variable is specific to the CSS minification process and was introduced in Meteor 2.11.0. It provides more detailed logging for the standard-minifier-css package.

Meteor CLI Documentation provides more information about the meteor build command and its options.

Standard Minifier CSS Package Documentation offers details about the debugging mode for the CSS minifier.

If you need to diagnose what’s making builds take a long time, you can also use the METEOR_PROFILE environment variable:

METEOR_PROFILE=1 meteor build <build-output-directory> --server=<host>:<port>

This will provide you with callstacks and times during builds, as mentioned in the Meteor CLI Environment Variables Documentation.
"