rails / cssbundling-rails

Bundle and process CSS in Rails with Tailwind, PostCSS, and Sass via Node.js.
MIT License
579 stars 83 forks source link

Fixed Procfile.dev to remove unnecessary empty line and terminated with a newline #23

Closed okonomi closed 3 years ago

okonomi commented 3 years ago

Fixed contents of Procfile.dev generated when executing rails new new_app -j esbuild --css tailwind.

before(without newline terminated):

web: bin/rails server -p 3000
js: yarn build --watch

css: yarn build:css --watch

after(with newline terminated):

web: bin/rails server -p 3000
js: yarn build --watch
css: yarn build:css --watch