Running Elixir
const elixir = require("coldbox-elixir");
module.exports = elixir(mix => {
mix.js("app.js");
});Watching Assets For Changes
NPM Scripts
"scripts": {
"dev": "webpack --hide-modules",
"watch": "npm run dev -- --watch",
"prod": "npm run dev -- -p"
}Last updated