this.app.dashboard?.updateStatus is not a function with Sass, post-scss

With a Sage project that’s a few months old, running node v16.20.0 after having migrated to a new hard drive, I’m getting this error running yarn build with version 6.12.3:

    "@popperjs/core": "^2.11.7",
    "@roots/bud": "^6.12.3",
    "@roots/bud-eslint": "^6.12.3",
    "@roots/bud-prettier": "^6.12.3",
    "@roots/bud-sass": "^6.12.3",
    "@roots/bud-stylelint": "^6.12.3",
    "@roots/bud-terser": "^6.12.3",
    "@roots/eslint-config": "^6.12.3",
    "@roots/sage": "6.12.3",
    "postcss-scss": "^4.0.6",
    "stylelint-config-standard": "^33.0.0"

Dashboard seems to exist, but not with the updateStatus method:

Dashboard { _app: [Function (anonymous)] }

Traceback:


 BudError

✘ this.app.dashboard?.updateStatus is not a function

☰ Stack trace
BudError: this.app.dashboard?.updateStatus is not a function
    at EventHooks.get (node_modules/@roots/bud-hooks/lib/event/event.js:17:29)
    at Bud.executeServiceCallbacks
(node_modules/@roots/bud/node_modules/@roots/bud-framework/lib/bud.js:40:26)
    at node_modules/@roots/bud/node_modules/@roots/bud-framework/lib/bootstrap.js:182:20
    at async node_modules/@roots/bud/node_modules/@roots/bud-framework/lib/bootstrap.js:181:9
    at async node_modules/@roots/bud/node_modules/@roots/bud-framework/lib/bootstrap.js:181:9
    at async Bud.bootstrap
(node_modules/@roots/bud/node_modules/@roots/bud-framework/lib/bootstrap.js:180:5)
    at async Bud.lifecycle (node_modules/@roots/bud/node_modules/@roots/bud-framework/lib/bud.js:95:9)
    at async BudBuildCommand.makeBud (node_modules/@roots/bud/lib/cli/commands/bud.js:215:9)
    at async BudBuildCommand.execute (node_modules/@roots/bud/lib/cli/commands/bud.build.js:86:9)
    at async BudBuildCommand.validateAndExecute (node_modules/clipanion/lib/advanced/Command.js:73:26

Based on this post, tried downgrading to v6.7.3, and then get a Module not found error for bud-terser:

ModuleError: Could not resolve @roots/bud-terser from
node_modules/@roots/bud-extensions/lib/service.js: Cannot find module
'node_modules/@roots/bud-terser/lib/index.js

Which makes sense because there is no lib directory in bud-terser:

LICENSE.md    README.md     node_modules/ package.json  src/

I also tried upgrading to v6.14.3, the installation of which asks me to select a version of bud-terser. I selected the default 2023.7.6-734 with the same result of Module not found, looking for
non-existent node_modules/@roots/bud-terser/lib/index.js.

Thanks, as always, for your insights.

The last version of @roots/bud-terser that still has lib/index.js in its package file would be 6.12.3. With 6.13.0 the lib/ directory was removed.
Would @roots/bud-terser 6.12.3 work with your existing setup?

It had been, but suddenly stopped after migrating the project to a different hard drive with the initially posted error: this.app.dashboard?.updateStatus, where dashboard, logged to the terminal is { _app: [Function (anonymous)] }.

You deleted the node_modules/ directory and re-installed everything?
Are you using yarn or npm? What node version?

I had similar issues and resolved those by clearing the npm/yarn cache.

1 Like

Node v16.20.0.

Hadn’t cleared the cache, but have now.

Deleted node_modules (again), ran npm cache clean --force and yarn cache clean, deleted yarn.lock.

Then yarn install. Bunch of warnings, of course:

warning @roots/bud > @roots/bud-support > webpack-dev-middleware > memfs@3.6.0: this will be v4
warning @roots/sage > @roots/bud-support > webpack-dev-middleware > memfs@3.6.0: this will be v4
warning @roots/sage > @roots/bud-support > css-minimizer-webpack-plugin > cssnano > cssnano-preset-default > postcss-svgo > svgo > stable@0.1.8: Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility
[3/5] 🚚  Fetching packages...
[4/5] 🔗  Linking dependencies...
warning "@roots/bud-sass > stylelint-config-recommended-scss@12.0.0" has unmet peer dependency "stylelint@^15.5.0".
warning "@roots/bud-sass > stylelint-scss@5.0.1" has unmet peer dependency "stylelint@^14.5.1 || ^15.0.0".
warning "@roots/bud-sass > sass-loader@13.3.2" has unmet peer dependency "webpack@^5.0.0".
warning "@roots/bud-sass > stylelint-config-recommended-scss > stylelint-config-recommended@12.0.0" has unmet peer dependency "stylelint@^15.5.0".
warning " > postcss-scss@4.0.6" has unmet peer dependency "postcss@^8.4.19".
warning "@roots/bud-stylelint > stylelint-webpack-plugin@4.1.1" has unmet peer dependency "webpack@^5.0.0".
warning " > stylelint-config-standard@33.0.0" has unmet peer dependency "stylelint@^15.5.0".
warning "@roots/eslint-config > eslint-plugin-jsx-a11y@6.7.1" has unmet peer dependency "eslint@^3 || ^4 || ^5 || ^6 || ^7 || ^8".
warning "@roots/eslint-config > eslint-plugin-prettier@4.2.1" has unmet peer dependency "eslint@>=7.28.0".
warning "@roots/eslint-config > eslint-plugin-prettier@4.2.1" has unmet peer dependency "prettier@>=2.0.0".
warning "@roots/eslint-config > eslint-plugin-react@7.32.2" has unmet peer dependency "eslint@^3 || ^4 || ^5 || ^6 || ^7 || ^8".
warning "@roots/eslint-config > eslint-plugin-import@2.27.5" has unmet peer dependency "eslint@^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8".
warning "@roots/eslint-config > eslint-config-prettier@8.8.0" has unmet peer dependency "eslint@>=7.0.0".
warning "@roots/eslint-config > @babel/eslint-parser@7.22.5" has unmet peer dependency "@babel/core@>=7.11.0".
warning "@roots/eslint-config > @babel/eslint-parser@7.22.5" has unmet peer dependency "eslint@^7.5.0 || ^8.0.0".
warning "@roots/eslint-config > eslint-plugin-react-hooks@4.6.0" has unmet peer dependency "eslint@^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0".
warning "@roots/eslint-config > @typescript-eslint/eslint-plugin@5.60.1" has unmet peer dependency "eslint@^6.0.0 || ^7.0.0 || ^8.0.0".
warning "@roots/eslint-config > @typescript-eslint/eslint-plugin > tsutils@3.21.0" has unmet peer dependency "typescript@>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta".
warning "@roots/eslint-config > @typescript-eslint/parser@5.60.1" has unmet peer dependency "eslint@^6.0.0 || ^7.0.0 || ^8.0.0".
warning "@roots/eslint-config > @typescript-eslint/eslint-plugin > @typescript-eslint/type-utils@5.60.1" has unmet peer dependency "eslint@*".
warning "@roots/eslint-config > @typescript-eslint/eslint-plugin > @typescript-eslint/utils@5.60.1" has unmet peer dependency "eslint@^6.0.0 || ^7.0.0 || ^8.0.0".
warning "@roots/sage > @roots/bud-support > type-fest@3.10.0" has unmet peer dependency "typescript@>=4.7.0".
warning "@roots/sage > @roots/bud-preset-wordpress > @roots/bud-react > @babel/preset-react@7.18.6" has unmet peer dependency "@babel/core@^7.0.0-0".
warning "@roots/sage > @roots/bud-preset-wordpress > @roots/bud-react > @babel/preset-react > @babel/plugin-transform-react-display-name@7.22.5" has unmet peer dependency "@babel/core@^7.0.0-0".
warning "@roots/sage > @roots/bud-preset-wordpress > @roots/bud-react > @babel/preset-react > @babel/plugin-transform-react-jsx-development@7.22.5" has unmet peer dependency "@babel/core@^7.0.0-0".
warning "@roots/sage > @roots/bud-preset-wordpress > @roots/bud-react > @babel/preset-react > @babel/plugin-transform-react-jsx@7.22.5" has unmet peer dependency "@babel/core@^7.0.0-0".
warning "@roots/sage > @roots/bud-preset-wordpress > @roots/bud-react > @babel/preset-react > @babel/plugin-transform-react-pure-annotations@7.22.5" has unmet peer dependency "@babel/core@^7.0.0-0".
warning "@roots/sage > @roots/bud-preset-wordpress > @roots/bud-react > @babel/preset-react > @babel/plugin-transform-react-jsx > @babel/plugin-syntax-jsx@7.22.5" has unmet peer dependency "@babel/core@^7.0.0-0".

And the same error: this.app.dashboard?.updateStatus is not a function.

Trying the cycle again with node v18.16.… Same error.

The introduction of the invocation of this updateStatus method was introduced with v6.14.0:

v6.14.0 (does invoke updateStatus):
https://github.com/roots/bud/blob/80560d622d72db69d85c251f474cc674fde2e76e/sources/%40roots/bud-hooks/src/event/event.ts#L23

v6.13.1 (does not invoke updateStatus):
https://github.com/roots/bud/blob/a4632937b0f1b465a4032ffb722bf266db6d3318/sources/%40roots/bud-hooks/src/event/event.ts#L22-L23

And with v6.14.0 the updateStatus method was added to the dashboard service:
https://github.com/roots/bud/blob/80560d622d72db69d85c251f474cc674fde2e76e/sources/%40roots/bud-dashboard/src/service.tsx#L287

The @roots/bud-dashboard package required by @roots/bud in your setup is not the same as @roots/bud and older than v6.14.0.

What does npm list for the @roots/ packages locked in your theme?
npm ls --all |grep roots

Well look at this! I seem to have both v6.12 and v6.14 in there!

├─┬ @roots/bud-eslint@6.14.3
│ ├─┬ @roots/bud-framework@6.14.3
│ │ ├── @roots/bud-support@6.14.3 deduped
│ │ ├─┬ @roots/container@6.14.3
│ │ ├─┬ @roots/filesystem@6.14.3
│ ├─┬ @roots/bud-support@6.14.3
│ │ ├── @roots/filesystem@6.14.3 deduped
│ ├── @roots/bud@6.14.3 deduped
├─┬ @roots/bud-prettier@6.14.3
│ ├─┬ @roots/bud-framework@6.14.3
│ │ ├── @roots/bud-support@6.14.3 deduped
│ │ ├─┬ @roots/container@6.14.3
│ │ ├─┬ @roots/filesystem@6.14.3
│ ├─┬ @roots/bud-support@6.14.3
│ │ ├── @roots/filesystem@6.14.3 deduped
│ ├── @roots/bud@6.14.3 deduped
├─┬ @roots/bud-sass@6.14.3
│ ├─┬ @roots/bud-framework@6.14.3
│ │ ├── @roots/bud-support@6.14.3 deduped
│ │ ├─┬ @roots/container@6.14.3
│ │ ├─┬ @roots/filesystem@6.14.3
│ ├─┬ @roots/bud-support@6.14.3
│ │ ├── @roots/filesystem@6.14.3 deduped
├─┬ @roots/bud-stylelint@6.14.3
│ ├─┬ @roots/bud-framework@6.14.3
│ │ ├── @roots/bud-support@6.14.3 deduped
│ │ ├─┬ @roots/container@6.14.3
│ │ ├─┬ @roots/filesystem@6.14.3
│ ├─┬ @roots/bud-support@6.14.3
│ │ ├── @roots/filesystem@6.14.3 deduped
│ ├── @roots/bud@6.14.3 deduped
├─┬ @roots/bud-terser@6.14.1
│ ├─┬ @roots/bud-framework@6.14.1
│ │ ├── @roots/bud-support@6.14.1 deduped
│ │ ├─┬ @roots/container@6.14.1
│ │ ├─┬ @roots/filesystem@6.14.1
│ ├─┬ @roots/bud-support@6.14.1
│ │ ├── @roots/filesystem@6.14.1 deduped
│ ├─┬ @roots/bud@6.14.1
│ │ ├─┬ @roots/browserslist-config@6.14.1
│ │ ├─┬ @roots/bud-api@6.14.1
│ │ │ ├── @roots/bud-extensions@6.14.1 deduped
│ │ │ ├── @roots/bud-framework@6.14.1 deduped
│ │ │ ├── @roots/bud-support@6.14.1 deduped
│ │ │ ├── @roots/container@6.14.1 deduped
│ │ ├─┬ @roots/bud-build@6.14.1
│ │ │ ├── @roots/bud-framework@6.14.1 deduped
│ │ │ ├── @roots/bud-support@6.14.1 deduped
│ │ ├─┬ @roots/bud-cache@6.14.1
│ │ │ ├── @roots/bud-framework@6.14.1 deduped
│ │ │ ├── @roots/bud-support@6.14.1 deduped
│ │ ├─┬ @roots/bud-client@6.14.1
│ │ ├─┬ @roots/bud-compiler@6.14.1
│ │ │ ├── @roots/bud-dashboard@6.14.1 deduped
│ │ │ ├── @roots/bud-framework@6.14.1 deduped
│ │ │ ├── @roots/bud-support@6.14.1 deduped
│ │ ├─┬ @roots/bud-dashboard@6.14.1
│ │ │ ├── @roots/bud-framework@6.14.1 deduped
│ │ │ ├── @roots/bud-support@6.14.1 deduped
│ │ ├─┬ @roots/bud-entrypoints@6.14.1
│ │ │ ├── @roots/bud-framework@6.14.1 deduped
│ │ │ ├── @roots/bud@6.14.1 deduped
│ │ │ ├─┬ @roots/entrypoints-webpack-plugin@6.14.1
│ │ ├─┬ @roots/bud-extensions@6.14.1
│ │ │ ├── @roots/bud-framework@6.14.1 deduped
│ │ │ ├── @roots/bud-minify@6.14.1 deduped
│ │ │ ├── @roots/bud-support@6.14.1 deduped
│ │ │ ├── @roots/container@6.14.1 deduped
│ │ ├── @roots/bud-framework@6.14.1 deduped
│ │ ├─┬ @roots/bud-hooks@6.14.1
│ │ │ ├── @roots/bud-framework@6.14.1 deduped
│ │ │ ├── @roots/bud-support@6.14.1 deduped
│ │ ├─┬ @roots/bud-minify@6.14.1
│ │ │ ├─┬ @roots/bud-framework@6.14.1
│ │ │ │ ├── @roots/bud-support@6.14.1 deduped
│ │ │ │ ├─┬ @roots/container@6.14.1
│ │ │ │ ├─┬ @roots/filesystem@6.14.1
│ │ │ ├─┬ @roots/bud-support@6.14.1
│ │ │ │ ├── @roots/filesystem@6.14.1 deduped
│ │ │ ├─┬ @roots/bud@6.14.1
│ │ │ │ ├─┬ @roots/browserslist-config@6.14.1
│ │ │ │ ├─┬ @roots/bud-api@6.14.1
│ │ │ │ │ ├── @roots/bud-extensions@6.14.1 deduped
│ │ │ │ │ ├── @roots/bud-framework@6.14.1 deduped
│ │ │ │ │ ├── @roots/bud-support@6.14.1 deduped
│ │ │ │ │ ├── @roots/container@6.14.1 deduped
│ │ │ │ ├─┬ @roots/bud-build@6.14.1
│ │ │ │ │ ├── @roots/bud-framework@6.14.1 deduped
│ │ │ │ │ ├── @roots/bud-support@6.14.1 deduped
│ │ │ │ ├─┬ @roots/bud-cache@6.14.1
│ │ │ │ │ ├── @roots/bud-framework@6.14.1 deduped
│ │ │ │ │ ├── @roots/bud-support@6.14.1 deduped
│ │ │ │ ├─┬ @roots/bud-client@6.14.1
│ │ │ │ ├─┬ @roots/bud-compiler@6.14.1
│ │ │ │ │ ├── @roots/bud-dashboard@6.14.1 deduped
│ │ │ │ │ ├── @roots/bud-framework@6.14.1 deduped
│ │ │ │ │ ├── @roots/bud-support@6.14.1 deduped
│ │ │ │ ├─┬ @roots/bud-dashboard@6.14.1
│ │ │ │ │ ├── @roots/bud-framework@6.14.1 deduped
│ │ │ │ │ ├── @roots/bud-support@6.14.1 deduped
│ │ │ │ ├─┬ @roots/bud-entrypoints@6.14.1
│ │ │ │ │ ├── @roots/bud-framework@6.14.1 deduped
│ │ │ │ │ ├── @roots/bud@6.14.1 deduped
│ │ │ │ │ ├─┬ @roots/entrypoints-webpack-plugin@6.14.1
│ │ │ │ ├─┬ @roots/bud-extensions@6.14.1
│ │ │ │ │ ├── @roots/bud-framework@6.14.1 deduped
│ │ │ │ │ ├── @roots/bud-minify@6.14.1 deduped
│ │ │ │ │ ├── @roots/bud-support@6.14.1 deduped
│ │ │ │ │ ├── @roots/container@6.14.1 deduped
│ │ │ │ ├── @roots/bud-framework@6.14.1 deduped
│ │ │ │ ├─┬ @roots/bud-hooks@6.14.1
│ │ │ │ │ ├── @roots/bud-framework@6.14.1 deduped
│ │ │ │ │ ├── @roots/bud-support@6.14.1 deduped
│ │ │ │ ├── @roots/bud-minify@6.14.1 deduped
│ │ │ │ ├─┬ @roots/bud-server@6.14.1
│ │ │ │ │ ├── @roots/bud-client@6.14.1 deduped
│ │ │ │ │ ├── @roots/bud-framework@6.14.1 deduped
│ │ │ │ │ ├── @roots/bud-support@6.14.1 deduped
│ │ │ │ ├── @roots/bud-support@6.14.1 deduped
│ │ ├─┬ @roots/bud-server@6.14.1
│ │ │ ├── @roots/bud-client@6.14.1 deduped
│ │ │ ├── @roots/bud-framework@6.14.1 deduped
│ │ │ ├── @roots/bud-support@6.14.1 deduped
│ │ ├── @roots/bud-support@6.14.1 deduped
├─┬ @roots/bud@6.14.3
│ ├─┬ @roots/browserslist-config@6.14.3
│ ├─┬ @roots/bud-api@6.14.3
│ │ ├─┬ @roots/bud-extensions@6.14.3
│ │ │ ├── @roots/bud-framework@6.14.3 deduped
│ │ │ ├─┬ @roots/bud-minify@6.14.3
│ │ │ │ ├── @roots/bud-framework@6.14.3 deduped
│ │ │ │ ├── @roots/bud-support@6.14.3 deduped
│ │ │ │ ├── @roots/bud@6.14.3 deduped
│ │ │ ├── @roots/bud-support@6.14.3 deduped
│ │ │ ├── @roots/container@6.14.3 deduped
│ │ ├─┬ @roots/bud-framework@6.14.3
│ │ │ ├── @roots/bud-support@6.14.3 deduped
│ │ │ ├── @roots/container@6.14.3 deduped
│ │ │ ├─┬ @roots/filesystem@6.14.3
│ │ ├─┬ @roots/bud-support@6.14.3
│ │ │ ├── @roots/filesystem@6.14.3 deduped
│ │ ├─┬ @roots/container@6.14.3
│ ├─┬ @roots/bud-build@6.14.3
│ │ ├── @roots/bud-framework@6.14.3 deduped
│ │ ├── @roots/bud-support@6.14.3 deduped
│ ├─┬ @roots/bud-cache@6.14.3
│ │ ├─┬ @roots/bud-framework@6.14.3
│ │ │ ├── @roots/bud-support@6.14.3 deduped
│ │ │ ├─┬ @roots/container@6.14.3
│ │ │ ├─┬ @roots/filesystem@6.14.3
│ │ ├─┬ @roots/bud-support@6.14.3
│ │ │ ├── @roots/filesystem@6.14.3 deduped
│ ├─┬ @roots/bud-client@6.14.3
│ ├─┬ @roots/bud-compiler@6.14.3
│ │ ├─┬ @roots/bud-dashboard@6.14.3
│ │ │ ├── @roots/bud-framework@6.14.3 deduped
│ │ │ ├── @roots/bud-support@6.14.3 deduped
│ │ ├─┬ @roots/bud-framework@6.14.3
│ │ │ ├── @roots/bud-support@6.14.3 deduped
│ │ │ ├─┬ @roots/container@6.14.3
│ │ │ ├─┬ @roots/filesystem@6.14.3
│ │ ├─┬ @roots/bud-support@6.14.3
│ │ │ ├── @roots/filesystem@6.14.3 deduped
│ ├─┬ @roots/bud-dashboard@6.14.3
│ │ ├── @roots/bud-framework@6.14.3 deduped
│ │ ├── @roots/bud-support@6.14.3 deduped
│ ├─┬ @roots/bud-entrypoints@6.14.3
│ │ ├─┬ @roots/bud-framework@6.14.3
│ │ │ ├─┬ @roots/bud-support@6.14.3
│ │ │ │ ├── @roots/filesystem@6.14.3 deduped
│ │ │ ├─┬ @roots/container@6.14.3
│ │ │ ├─┬ @roots/filesystem@6.14.3
│ │ ├── @roots/bud@6.14.3 deduped
│ │ ├─┬ @roots/entrypoints-webpack-plugin@6.14.3
│ ├─┬ @roots/bud-extensions@6.14.3
│ │ ├── @roots/bud-framework@6.14.3 deduped
│ │ ├── @roots/bud-minify@6.14.3 deduped
│ │ ├── @roots/bud-support@6.14.3 deduped
│ │ ├─┬ @roots/container@6.14.3
│ ├─┬ @roots/bud-framework@6.14.3
│ │ ├── @roots/bud-support@6.14.3 deduped
│ │ ├── @roots/container@6.14.3 deduped
│ │ ├─┬ @roots/filesystem@6.14.3
│ ├─┬ @roots/bud-hooks@6.14.3
│ │ ├─┬ @roots/bud-framework@6.14.3
│ │ │ ├── @roots/bud-support@6.14.3 deduped
│ │ │ ├─┬ @roots/container@6.14.3
│ │ │ ├─┬ @roots/filesystem@6.14.3
│ │ ├─┬ @roots/bud-support@6.14.3
│ │ │ ├── @roots/filesystem@6.14.3 deduped
│ ├─┬ @roots/bud-minify@6.14.3
│ │ ├── @roots/bud-framework@6.14.3 deduped
│ │ ├── @roots/bud-support@6.14.3 deduped
│ │ ├── @roots/bud@6.14.3 deduped
│ ├─┬ @roots/bud-server@6.14.3
│ │ ├─┬ @roots/bud-client@6.14.3
│ │ ├─┬ @roots/bud-framework@6.14.3
│ │ │ ├── @roots/bud-support@6.14.3 deduped
│ │ │ ├─┬ @roots/container@6.14.3
│ │ │ ├─┬ @roots/filesystem@6.14.3
│ │ ├─┬ @roots/bud-support@6.14.3
│ │ │ ├── @roots/filesystem@6.14.3 deduped
│ ├─┬ @roots/bud-support@6.14.3
│ │ ├── @roots/filesystem@6.14.3 deduped
├─┬ @roots/eslint-config@6.14.3
├─┬ @roots/sage@6.12.3
│ ├─┬ @roots/blade-loader@6.12.3
│ ├─┬ @roots/bud-babel@6.12.3
│ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ ├── @roots/bud-support@6.12.3 deduped
│ │ ├─┬ @roots/bud@6.12.3
│ │ │ ├─┬ @roots/browserslist-config@6.12.3
│ │ │ ├─┬ @roots/bud-api@6.12.3
│ │ │ │ ├── @roots/bud-extensions@6.12.3 deduped
│ │ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ │ ├── @roots/bud-support@6.12.3 deduped
│ │ │ │ ├── @roots/container@6.12.3 deduped
│ │ │ ├── @roots/bud-build@6.12.3 deduped
│ │ │ ├─┬ @roots/bud-cache@6.12.3
│ │ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ │ ├── @roots/bud-support@6.12.3 deduped
│ │ │ ├── @roots/bud-client@6.12.3 deduped
│ │ │ ├─┬ @roots/bud-compiler@6.12.3
│ │ │ │ ├── @roots/bud-dashboard@6.12.3 deduped
│ │ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ │ ├── @roots/bud-support@6.12.3 deduped
│ │ │ ├── @roots/bud-dashboard@6.12.3 deduped
│ │ │ ├─┬ @roots/bud-entrypoints@6.12.3
│ │ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ │ ├── @roots/bud@6.12.3 deduped
│ │ │ │ ├─┬ @roots/entrypoints-webpack-plugin@6.12.3
│ │ │ ├── @roots/bud-extensions@6.12.3 deduped
│ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ ├─┬ @roots/bud-hooks@6.12.3
│ │ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ │ ├── @roots/bud-support@6.12.3 deduped
│ │ │ ├─┬ @roots/bud-server@6.12.3
│ │ │ │ ├── @roots/bud-client@6.12.3 deduped
│ │ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ │ ├── @roots/bud-support@6.12.3 deduped
│ │ │ ├── @roots/bud-support@6.12.3 deduped
│ │ │ ├─┬ @roots/bud-terser@6.12.3
│ │ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ │ ├── @roots/bud-support@6.12.3 deduped
│ │ │ │ ├── @roots/bud@6.12.3 deduped
│ ├─┬ @roots/bud-build@6.12.3
│ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ ├── @roots/bud-support@6.12.3 deduped
│ ├─┬ @roots/bud-framework@6.12.3
│ │ ├── @roots/bud-support@6.12.3 deduped
│ │ ├── @roots/container@6.12.3 deduped
│ │ ├─┬ @roots/filesystem@6.12.3
│ ├─┬ @roots/bud-postcss@6.12.3
│ │ ├── @roots/bud-build@6.12.3 deduped
│ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ ├── @roots/bud-support@6.12.3 deduped
│ │ ├─┬ @roots/bud@6.12.3
│ │ │ ├─┬ @roots/browserslist-config@6.12.3
│ │ │ ├─┬ @roots/bud-api@6.12.3
│ │ │ │ ├── @roots/bud-extensions@6.12.3 deduped
│ │ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ │ ├── @roots/bud-support@6.12.3 deduped
│ │ │ │ ├── @roots/container@6.12.3 deduped
│ │ │ ├── @roots/bud-build@6.12.3 deduped
│ │ │ ├─┬ @roots/bud-cache@6.12.3
│ │ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ │ ├── @roots/bud-support@6.12.3 deduped
│ │ │ ├── @roots/bud-client@6.12.3 deduped
│ │ │ ├─┬ @roots/bud-compiler@6.12.3
│ │ │ │ ├── @roots/bud-dashboard@6.12.3 deduped
│ │ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ │ ├── @roots/bud-support@6.12.3 deduped
│ │ │ ├── @roots/bud-dashboard@6.12.3 deduped
│ │ │ ├─┬ @roots/bud-entrypoints@6.12.3
│ │ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ │ ├── @roots/bud@6.12.3 deduped
│ │ │ │ ├─┬ @roots/entrypoints-webpack-plugin@6.12.3
│ │ │ ├── @roots/bud-extensions@6.12.3 deduped
│ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ ├─┬ @roots/bud-hooks@6.12.3
│ │ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ │ ├── @roots/bud-support@6.12.3 deduped
│ │ │ ├─┬ @roots/bud-server@6.12.3
│ │ │ │ ├── @roots/bud-client@6.12.3 deduped
│ │ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ │ ├── @roots/bud-support@6.12.3 deduped
│ │ │ ├── @roots/bud-support@6.12.3 deduped
│ │ │ ├─┬ @roots/bud-terser@6.12.3
│ │ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ │ ├── @roots/bud-support@6.12.3 deduped
│ │ │ │ ├── @roots/bud@6.12.3 deduped
│ ├─┬ @roots/bud-preset-wordpress@6.12.3
│ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ ├─┬ @roots/bud-preset-recommend@6.12.3
│ │ │ ├── @roots/bud-babel@6.12.3 deduped
│ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ ├── @roots/bud-postcss@6.12.3 deduped
│ │ │ ├─┬ @roots/bud@6.12.3
│ │ │ │ ├─┬ @roots/browserslist-config@6.12.3
│ │ │ │ ├─┬ @roots/bud-api@6.12.3
│ │ │ │ │ ├── @roots/bud-extensions@6.12.3 deduped
│ │ │ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ │ │ ├── @roots/bud-support@6.12.3 deduped
│ │ │ │ │ ├── @roots/container@6.12.3 deduped
│ │ │ │ ├── @roots/bud-build@6.12.3 deduped
│ │ │ │ ├─┬ @roots/bud-cache@6.12.3
│ │ │ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ │ │ ├── @roots/bud-support@6.12.3 deduped
│ │ │ │ ├── @roots/bud-client@6.12.3 deduped
│ │ │ │ ├─┬ @roots/bud-compiler@6.12.3
│ │ │ │ │ ├── @roots/bud-dashboard@6.12.3 deduped
│ │ │ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ │ │ ├── @roots/bud-support@6.12.3 deduped
│ │ │ │ ├── @roots/bud-dashboard@6.12.3 deduped
│ │ │ │ ├─┬ @roots/bud-entrypoints@6.12.3
│ │ │ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ │ │ ├── @roots/bud@6.12.3 deduped
│ │ │ │ │ ├─┬ @roots/entrypoints-webpack-plugin@6.12.3
│ │ │ │ ├── @roots/bud-extensions@6.12.3 deduped
│ │ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ │ ├─┬ @roots/bud-hooks@6.12.3
│ │ │ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ │ │ ├── @roots/bud-support@6.12.3 deduped
│ │ │ │ ├─┬ @roots/bud-server@6.12.3
│ │ │ │ │ ├── @roots/bud-client@6.12.3 deduped
│ │ │ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ │ │ ├── @roots/bud-support@6.12.3 deduped
│ │ │ │ ├── @roots/bud-support@6.12.3 deduped
│ │ │ │ ├─┬ @roots/bud-terser@6.12.3
│ │ │ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ │ │ ├── @roots/bud-support@6.12.3 deduped
│ │ │ │ │ ├── @roots/bud@6.12.3 deduped
│ │ ├─┬ @roots/bud-react@6.12.3
│ │ │ ├── @roots/bud-babel@6.12.3 deduped
│ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ ├── @roots/bud-support@6.12.3 deduped
│ │ ├── @roots/bud-support@6.12.3 deduped
│ │ ├─┬ @roots/bud-tailwindcss-theme-json@6.12.3
│ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ ├── @roots/bud-support@6.12.3 deduped
│ │ │ ├── @roots/bud-wordpress-theme-json@6.12.3 deduped
│ │ │ ├─┬ @roots/bud@6.12.3
│ │ │ │ ├─┬ @roots/browserslist-config@6.12.3
│ │ │ │ ├─┬ @roots/bud-api@6.12.3
│ │ │ │ │ ├── @roots/bu
d-extensions@6.12.3 deduped
│ │ │ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ │ │ ├── @roots/bud-support@6.12.3 deduped
│ │ │ │ │ ├── @roots/container@6.12.3 deduped
│ │ │ │ ├── @roots/bud-build@6.12.3 deduped
│ │ │ │ ├─┬ @roots/bud-cache@6.12.3
│ │ │ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ │ │ ├── @roots/bud-support@6.12.3 deduped
│ │ │ │ ├── @roots/bud-client@6.12.3 deduped
│ │ │ │ ├─┬ @roots/bud-compiler@6.12.3
│ │ │ │ │ ├── @roots/bud-dashboard@6.12.3 deduped
│ │ │ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ │ │ ├── @roots/bud-support@6.12.3 deduped
│ │ │ │ ├── @roots/bud-dashboard@6.12.3 deduped
npm│ │ │ │ ├─┬ @roots/bud-entrypoints@6.12.3
│ │ │ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ │ │ ├── @roots/bud@6.12.3 deduped
│ │ │ │ │ ├─┬ @roots/entrypoints-webpack-plugin@6.12.3
│ │ │ │ ├── @roots/bud-extensions@6.12.3 deduped
│ │ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ │ ├─┬ @roots/bud-hooks@6.12.3
│ │ │ │ │ ├── @roots/bud-framework@6.12.3 deduped
 │ │ │ │ │ ├── @roots/bud-support@6.12.3 deduped
│ │ │ │ ├─┬ @roots/bud-server@6.12.3
│ │ │ │ │ ├── @roots/bud-client@6.12.3 deduped
│ │ │ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ │ │ ├── @roots/bud-support@6.12.3 deduped
ERR!│ │ │ │ ├── @roots/bud-support@6.12.3 deduped
│ │ │ │ ├─┬ @roots/bud-terser@6.12.3
│ │ │ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ │ │ ├── @roots/bud-support@6.12.3 deduped
│ │ │ │ │ ├── @roots/bud@6.12.3 deduped
 A complete log of this run can be found in:
│ │ ├─┬ @roots/bud-wordpress-manifests@6.12.3
│ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ ├─┬ @roots/bud-wordpress-dependencies@6.12.3
│ │ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ │ ├─┬ @roots/bud@6.12.3
│ │ │ │ │ ├─┬ @roots/browserslist-config@6.12.3
│ │ │ │ │ ├─┬ @roots/bud-api@6.12.3
npm│ │ │ │ │ │ ├── @roots/bud-extensions@6.12.3 deduped
│ │ │ │ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ │ │ │ ├── @roots/bud-support@6.12.3 deduped
│ │ │ │ │ │ ├── @roots/container@6.12.3 deduped
 │ │ │ │ │ ├── @roots/bud-build@6.12.3 deduped
│ │ │ │ │ ├─┬ @roots/bud-cache@6.12.3
│ │ │ │ │ │ ├── @roots/bud-framework@6.12.3 deduped
ERR!│ │ │ │ │ │ ├── @roots/bud-support@6.12.3 deduped
│ │ │ │ │ ├── @roots/bud-client@6.12.3 deduped
│ │ │ │ │ ├─┬ @roots/bud-compiler@6.12.3
     /Users/mikekilmer/.npm/_logs/2023-07-16T03_19_39_473Z-debug-0.log
│ │ │ │ │ │ ├── @roots/bud-dashboard@6.12.3 deduped
│ │ │ │ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ │ │ │ ├── @roots/bud-support@6.12.3 deduped
│ │ │ │ │ ├── @roots/bud-dashboard@6.12.3 deduped
│ │ │ │ │ ├─┬ @roots/bud-entrypoints@6.12.3
│ │ │ │ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ │ │ │ ├── @roots/bud@6.12.3 deduped
│ │ │ │ │ │ ├─┬ @roots/entrypoints-webpack-plugin@6.12.3
│ │ │ │ │ ├── @roots/bud-extensions@6.12.3 deduped
│ │ │ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ │ │ ├─┬ @roots/bud-hooks@6.12.3
│ │ │ │ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ │ │ │ ├── @roots/bud-support@6.12.3 deduped
│ │ │ │ │ ├─┬ @roots/bud-server@6.12.3
│ │ │ │ │ │ ├── @roots/bud-client@6.12.3 deduped
│ │ │ │ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ │ │ │ ├── @roots/bud-support@6.12.3 deduped
│ │ │ │ │ ├── @roots/bud-support@6.12.3 deduped
│ │ │ │ │ ├─┬ @roots/bud-terser@6.12.3
│ │ │ │ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ │ │ │ ├── @roots/bud-support@6.12.3 deduped
│ │ │ │ │ │ ├── @roots/bud@6.12.3 deduped
│ │ │ │ ├─┬ @roots/wordpress-dependencies-webpack-plugin@6.12.3
│ │ │ ├─┬ @roots/bud-wordpress-externals@6.12.3
│ │ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ │ ├─┬ @roots/bud@6.12.3
│ │ │ │ │ ├─┬ @roots/browserslist-config@6.12.3
│ │ │ │ │ ├─┬ @roots/bud-api@6.12.3
│ │ │ │ │ │ ├── @roots/bud-extensions@6.12.3 deduped
│ │ │ │ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ │ │ │ ├── @roots/bud-support@6.12.3 deduped
│ │ │ │ │ │ ├── @roots/container@6.12.3 deduped
│ │ │ │ │ ├── @roots/bud-build@6.12.3 deduped
│ │ │ │ │ ├─┬ @roots/bud-cache@6.12.3
│ │ │ │ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ │ │ │ ├── @roots/bud-support@6.12.3 deduped
│ │ │ │ │ ├── @roots/bud-client@6.12.3 deduped
│ │ │ │ │ ├─┬ @roots/bud-compiler@6.12.3
│ │ │ │ │ │ ├── @roots/bud-dashboard@6.12.3 deduped
│ │ │ │ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ │ │ │ ├── @roots/bud-support@6.12.3 deduped
│ │ │ │ │ ├── @roots/bud-dashboard@6.12.3 deduped
│ │ │ │ │ ├─┬ @roots/bud-entrypoints@6.12.3
│ │ │ │ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ │ │ │ ├── @roots/bud@6.12.3 deduped
│ │ │ │ │ │ ├─┬ @roots/entrypoints-webpack-plugin@6.12.3
│ │ │ │ │ ├── @roots/bud-extensions@6.12.3 deduped
│ │ │ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ │ │ ├─┬ @roots/bud-hooks@6.12.3
│ │ │ │ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ │ │ │ ├── @roots/bud-support@6.12.3 deduped
│ │ │ │ │ ├─┬ @roots/bud-server@6.12.3
│ │ │ │ │ │ ├── @roots/bud-client@6.12.3 deduped
│ │ │ │ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ │ │ │ ├── @roots/bud-support@6.12.3 deduped
│ │ │ │ │ ├── @roots/bud-support@6.12.3 deduped
│ │ │ │ │ ├─┬ @roots/bud-terser@6.12.3
│ │ │ │ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ │ │ │ ├── @roots/bud-support@6.12.3 deduped
│ │ │ │ │ │ ├── @roots/bud@6.12.3 deduped
│ │ │ │ ├─┬ @roots/wordpress-externals-webpack-plugin@6.12.3
│ │ │ ├─┬ @roots/bud@6.12.3
│ │ │ │ ├─┬ @roots/browserslist-config@6.12.3
│ │ │ │ ├─┬ @roots/bud-api@6.12.3
│ │ │ │ │ ├── @roots/bud-extensions@6.12.3 deduped
│ │ │ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ │ │ ├── @roots/bud-support@6.12.3 deduped
│ │ │ │ │ ├── @roots/container@6.12.3 deduped
│ │ │ │ ├── @roots/bud-build@6.12.3 deduped
│ │ │ │ ├─┬ @roots/bud-cache@6.12.3
│ │ │ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ │ │ ├── @roots/bud-support@6.12.3 deduped
│ │ │ │ ├── @roots/bud-client@6.12.3 deduped
│ │ │ │ ├─┬ @roots/bud-compiler@6.12.3
│ │ │ │ │ ├── @roots/bud-dashboard@6.12.3 deduped
│ │ │ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ │ │ ├── @roots/bud-support@6.12.3 deduped
│ │ │ │ ├── @roots/bud-dashboard@6.12.3 deduped
│ │ │ │ ├─┬ @roots/bud-entrypoints@6.12.3
│ │ │ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ │ │ ├── @roots/bud@6.12.3 deduped
│ │ │ │ │ ├─┬ @roots/entrypoints-webpack-plugin@6.12.3
│ │ │ │ ├── @roots/bud-extensions@6.12.3 deduped
│ │ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ │ ├─┬ @roots/bud-hooks@6.12.3
│ │ │ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ │ │ ├── @roots/bud-support@6.12.3 deduped
│ │ │ │ ├─┬ @roots/bud-server@6.12.3
│ │ │ │ │ ├── @roots/bud-client@6.12.3 deduped
│ │ │ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ │ │ ├── @roots/bud-support@6.12.3 deduped
│ │ │ │ ├── @roots/bud-support@6.12.3 deduped
│ │ │ │ ├─┬ @roots/bud-terser@6.12.3
│ │ │ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ │ │ ├── @roots/bud-support@6.12.3 deduped
│ │ │ │ │ ├── @roots/bud@6.12.3 deduped
│ │ │ ├─┬ @roots/merged-manifest-webpack-plugin@6.12.3
│ │ ├─┬ @roots/bud-wordpress-theme-json@6.12.3
│ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ ├── @roots/bud-support@6.12.3 deduped
│ │ │ ├─┬ @roots/bud@6.12.3
│ │ │ │ ├─┬ @roots/browserslist-config@6.12.3
│ │ │ │ ├─┬ @roots/bud-api@6.12.3
│ │ │ │ │ ├── @roots/bud-extensions@6.12.3 deduped
│ │ │ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ │ │ ├── @roots/bud-support@6.12.3 deduped
│ │ │ │ │ ├── @roots/container@6.12.3 deduped
│ │ │ │ ├── @roots/bud-build@6.12.3 deduped
│ │ │ │ ├─┬ @roots/bud-cache@6.12.3
│ │ │ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ │ │ ├── @roots/bud-support@6.12.3 deduped
│ │ │ │ ├── @roots/bud-client@6.12.3 deduped
│ │ │ │ ├─┬ @roots/bud-compiler@6.12.3
│ │ │ │ │ ├── @roots/bud-dashboard@6.12.3 deduped
│ │ │ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ │ │ ├── @roots/bud-support@6.12.3 deduped
│ │ │ │ ├── @roots/bud-dashboard@6.12.3 deduped
│ │ │ │ ├─┬ @roots/bud-entrypoints@6.12.3
│ │ │ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ │ │ ├── @roots/bud@6.12.3 deduped
│ │ │ │ │ ├─┬ @roots/entrypoints-webpack-plugin@6.12.3
│ │ │ │ ├── @roots/bud-extensions@6.12.3 deduped
│ │ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ │ ├─┬ @roots/bud-hooks@6.12.3
│ │ │ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ │ │ ├── @roots/bud-support@6.12.3 deduped
│ │ │ │ ├─┬ @roots/bud-server@6.12.3
│ │ │ │ │ ├── @roots/bud-client@6.12.3 deduped
│ │ │ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ │ │ ├── @roots/bud-support@6.12.3 deduped
│ │ │ │ ├── @roots/bud-support@6.12.3 deduped
│ │ │ │ ├─┬ @roots/bud-terser@6.12.3
│ │ │ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ │ │ ├── @roots/bud-support@6.12.3 deduped
│ │ │ │ │ ├── @roots/bud@6.12.3 deduped
│ │ │ ├── @roots/container@6.12.3 deduped
│ │ │ ├─┬ @roots/wordpress-theme-json-webpack-plugin@6.12.3
│ │ ├─┬ @roots/bud@6.12.3
│ │ │ ├─┬ @roots/browserslist-config@6.12.3
│ │ │ ├─┬ @roots/bud-api@6.12.3
│ │ │ │ ├── @roots/bud-extensions@6.12.3 deduped
│ │ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ │ ├── @roots/bud-support@6.12.3 deduped
│ │ │ │ ├── @roots/container@6.12.3 deduped
│ │ │ ├── @roots/bud-build@6.12.3 deduped
│ │ │ ├─┬ @roots/bud-cache@6.12.3
│ │ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ │ ├── @roots/bud-support@6.12.3 deduped
│ │ │ ├── @roots/bud-client@6.12.3 deduped
│ │ │ ├─┬ @roots/bud-compiler@6.12.3
│ │ │ │ ├── @roots/bud-dashboard@6.12.3 deduped
│ │ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ │ ├── @roots/bud-support@6.12.3 deduped
│ │ │ ├── @roots/bud-dashboard@6.12.3 deduped
│ │ │ ├─┬ @roots/bud-entrypoints@6.12.3
│ │ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ │ ├── @roots/bud@6.12.3 deduped
│ │ │ │ ├─┬ @roots/entrypoints-webpack-plugin@6.12.3
│ │ │ ├── @roots/bud-extensions@6.12.3 deduped
│ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ ├─┬ @roots/bud-hooks@6.12.3
│ │ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ │ ├── @roots/bud-support@6.12.3 deduped
│ │ │ ├─┬ @roots/bud-server@6.12.3
│ │ │ │ ├── @roots/bud-client@6.12.3 deduped
│ │ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ │ ├── @roots/bud-support@6.12.3 deduped
│ │ │ ├── @roots/bud-support@6.12.3 deduped
│ │ │ ├─┬ @roots/bud-terser@6.12.3
│ │ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ │ ├── @roots/bud-support@6.12.3 deduped
│ │ │ │ ├── @roots/bud@6.12.3 deduped
│ │ ├─┬ @roots/wordpress-hmr@6.12.3
│ ├─┬ @roots/bud-support@6.12.3
│ │ ├── @roots/filesystem@6.12.3 deduped
│ ├─┬ @roots/bud@6.12.3
│ │ ├─┬ @roots/browserslist-config@6.12.3
│ │ ├─┬ @roots/bud-api@6.12.3
│ │ │ ├── @roots/bud-extensions@6.12.3 deduped
│ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ ├── @roots/bud-support@6.12.3 deduped
│ │ │ ├── @roots/container@6.12.3 deduped
│ │ ├── @roots/bud-build@6.12.3 deduped
│ │ ├─┬ @roots/bud-cache@6.12.3
│ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ ├── @roots/bud-support@6.12.3 deduped
│ │ ├─┬ @roots/bud-client@6.12.3
│ │ ├─┬ @roots/bud-compiler@6.12.3
│ │ │ ├── @roots/bud-dashboard@6.12.3 deduped
│ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ ├── @roots/bud-support@6.12.3 deduped
│ │ ├─┬ @roots/bud-dashboard@6.12.3
│ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ ├── @roots/bud-support@6.12.3 deduped
│ │ ├─┬ @roots/bud-entrypoints@6.12.3
│ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ ├── @roots/bud@6.12.3 deduped
│ │ │ ├─┬ @roots/entrypoints-webpack-plugin@6.12.3
│ │ ├─┬ @roots/bud-extensions@6.12.3
│ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ ├── @roots/bud-support@6.12.3 deduped
│ │ │ ├─┬ @roots/bud-terser@6.12.3
│ │ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ │ ├── @roots/bud-support@6.12.3 deduped
│ │ │ │ ├─┬ @roots/bud@6.12.3
│ │ │ │ │ ├─┬ @roots/browserslist-config@6.12.3
│ │ │ │ │ ├─┬ @roots/bud-api@6.12.3
│ │ │ │ │ │ ├── @roots/bud-extensions@6.12.3 deduped
│ │ │ │ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ │ │ │ ├── @roots/bud-support@6.12.3 deduped
│ │ │ │ │ │ ├── @roots/container@6.12.3 deduped
│ │ │ │ │ ├── @roots/bud-build@6.12.3 deduped
│ │ │ │ │ ├─┬ @roots/bud-cache@6.12.3
│ │ │ │ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ │ │ │ ├── @roots/bud-support@6.12.3 deduped
│ │ │ │ │ ├── @roots/bud-client@6.12.3 deduped
│ │ │ │ │ ├─┬ @roots/bud-compiler@6.12.3
│ │ │ │ │ │ ├── @roots/bud-dashboard@6.12.3 deduped
│ │ │ │ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ │ │ │ ├── @roots/bud-support@6.12.3 deduped
│ │ │ │ │ ├── @roots/bud-dashboard@6.12.3 deduped
│ │ │ │ │ ├─┬ @roots/bud-entrypoints@6.12.3
│ │ │ │ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ │ │ │ ├── @roots/bud@6.12.3 deduped
│ │ │ │ │ │ ├─┬ @roots/entrypoints-webpack-plugin@6.12.3
│ │ │ │ │ ├── @roots/bud-extensions@6.12.3 deduped
│ │ │ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ │ │ ├─┬ @roots/bud-hooks@6.12.3
│ │ │ │ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ │ │ │ ├── @roots/bud-support@6.12.3 deduped
│ │ │ │ │ ├─┬ @roots/bud-server@6.12.3
│ │ │ │ │ │ ├── @roots/bud-client@6.12.3 deduped
│ │ │ │ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ │ │ │ ├── @roots/bud-support@6.12.3 deduped
│ │ │ │ │ ├── @roots/bud-support@6.12.3 deduped
│ │ │ │ │ ├── @roots/bud-terser@6.12.3 deduped
│ │ │ ├── @roots/container@6.12.3 deduped
│ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ ├─┬ @roots/bud-hooks@6.12.3
│ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ ├── @roots/bud-support@6.12.3 deduped
│ │ ├─┬ @roots/bud-server@6.12.3
│ │ │ ├── @roots/bud-client@6.12.3 deduped
│ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ ├── @roots/bud-support@6.12.3 deduped
│ │ ├── @roots/bud-support@6.12.3 deduped
│ │ ├─┬ @roots/bud-terser@6.12.3
│ │ │ ├── @roots/bud-framework@6.12.3 deduped
│ │ │ ├── @roots/bud-support@6.12.3 deduped
│ │ │ ├── @roots/bud@6.12.3 deduped
│ ├─┬ @roots/container@6.12.3

I have removed the carets (^6.12.3 now 6.12.3) from package.json and working now.

What would I do without you, @strarsis?

Glad it works now.

The @roots/bud* package version constraints appear to be too lenient.
Ideally yarn/npm should refuse installing @roots/bud* packages that are incompatible API-wise.

Yeah. Well, I’m not complaining. Just hoping the be more of service to the codebase as my own proficiencies develop.