Meteor build is killed after a while

meteor build spins the CPU and fans, then after while is killed:

website git:e83b375 ❯ meteor build test-build
                                              
WARNING: The output directory is under your source tree.
         Your generated files may get interpreted as source code!
         Consider building into a different directory instead
         meteor build ../output
                                              
Browserslist: caniuse-lite is outdated. Please run next command `npm update`
[1]    23702 killed     meteor build test-build

How would you debug that?

Hi, as the warning suggests you should build it in a different folder.

Like ../output otherwise the build itself will be considered source code.

1 Like

Oh, is it recursively building itself in that case?