After updating to version 6.24.0 of Bud.js, the bud dev
command is no longer picking up live CSS changes in my case.
Running npm run build
compiles everything as expected:
bud-example [2c9766e88566fb2d] ./dist
│
│ app
│ ◉ js/runtime.js ✔ 1.02 kB
│ ◉ css/app.css ✔ 27 bytes
│ ◉ js/app.js ✔ 395 bytes
│
╰ 1s 270ms 3 modules [0/3 modules cached]
But running npm run dev
only compiles js, even when changes have been made to the scss files:
bud-example [acaec069b97dfc85] ./dist
│
│ app
│ ◉ js/runtime.js 48.96 kB
│ ◉ js/app.js 144.39 kB
│
╰ 1s 380ms 87 modules [0/87 modules cached]
Network
› Proxy ┄ https://example.test/
› Dev ┄ http://localhost:3000/
┄ http://10.0.0.234:3000/
My minimal bud.config:
export default async (app) => {
app
.setPath({
"@src": `src`,
"@modules": `node_modules`,
"@scripts": `@src/scripts`,
"@styles": `@src/scss`,
"@dist": `dist`,
})
.alias({
"@modules": app.path(`@modules`),
"@scripts": app.path(`@scripts`),
"@styles": app.path(`@styles`),
})
/**
* Application entrypoints.
*
* @see {@link https://bud.js.org/docs/bud.entry}
* @see {@link https://bud.js.org/docs/bud.assets}
*/
.entry({
app: ["@scripts/app", "@styles/style"],
})
/**
* Reload when editing PHP and SCSS files
*/
.watch(["@src/**/*", app.path("**/*.php")])
/**
* Set your SSL_CERT AND SSL_KEY paths in .env.local in root site folder
*
* @see {@link https://bud.js.org/reference/bud.setUrl}
* @see {@link https://bud.js.org/reference/bud.setProxyUrl}
* @see {@link https://bud.js.org/reference/bud.watch}
*/
.setUrl("http://localhost:3000")
.setProxyUrl("https://example.test");
};
And the project structure:
├── bud.config.mjs
├── dist/
│ ├── entrypoints.json
│ ├── js/
│ │ ├── app.js
│ │ └── runtime.js
│ └── manifest.json
├── index.php
├── package-lock.json
├── package.json
└── src/
├── scripts/
│ ├── app.js
│ └── utils/
│ └── domReady.js
└── scss/
└── style.scss
With npm run dev
I would expect css/app.css
to be rendered alongside the js - this was the case before I upgraded Bud.js. Why are styles now being ignored by the dev
command?
I am using the @roots/bud-sass
package, and I am using Bud on its own (no Sage).
I have a minimal reproducible repo here if anyone cares to test it.