beefy icon indicating copy to clipboard operation
beefy copied to clipboard

Support for building static assets

Open jareware opened this issue 9 years ago • 1 comments

I like the simplicity of Beefy, but I find it hard to integrate SASS compilation into the livereload-workflow.

I tried using a custom --bundler command for tacking it along but it was super awkward.

Do you have better ideas, or am I doing it wrong?

jareware avatar Nov 05 '14 10:11 jareware

I'm using compass and package.json scripts. Using catw you can watch changes in your sass files folder and fire a command (-c), in my case compass compilation: "scripts": { "test-js": "beefy ./public/app.js:build.js --index ./public/index.html --live --open --browserify -g hbsfy", "watch-css": "catw -c 'compass compile' public/sass/*.scss", "watch": "npm run watch-css & npm run test-js ", }

h02e56 avatar Jan 24 '15 17:01 h02e56