Yarn build returning "TypeError"

After instalattion bud-sass, when I use yarn build, the console show “TypeError”.

My package.json

{
“name”: “sage”,
“private”: true,
“browserslist”: [
“extends @roots/browserslist-config”
],
“engines”: {
“node”: “>=16.0.0”
},
“type”: “module”,
“scripts”: {
“dev”: “bud dev”,
“build”: “bud build”,
“translate”: “yarn translate:pot && yarn translate:update”,
“translate:pot”: “wp i18n make-pot . ./resources/lang/sage.pot --include="app,resources"”,
“translate:update”: “for filename in ./resources/lang/.po; do msgmerge -U $filename ./resources/lang/sage.pot; done; rm -f ./resources/lang/.po~”,
“translate:compile”: “yarn translate:mo && yarn translate:js”,
“translate:js”: “wp i18n make-json ./resources/lang --pretty-print”,
“translate:mo”: “wp i18n make-mo ./resources/lang ./resources/lang”
},
“devDependencies”: {
@roots/bud”: “6.7.3”,
@roots/bud-sass”: “^6.11.0”,
@roots/bud-tailwindcss”: “6.7.3”,
@roots/sage”: “6.7.3”
},
“dependencies”: {}
}

A few things:

Provide us with steps used to reproduce this issue

Format your post correctly

Put in some effort when making topics here.

I’m guessing that this isn’t reproducible from a new Sage install. Your package.json is mixing Bud 6.7.3 (pretty old) with Bud 6.11.0 (new). Newer Bud versions show a warning when you mix versions like this.