mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
95e00befbc
The Action Text installations appends `require("trix")` to the application.js file. The problem is that there isn't a line break in the beginning of the installation output, leading to syntax errors, e.g.: ``` import './application.scss'require("trix") ``` This commit moves the line break from the end to the beginning of the output, fixing it to: ``` import './application.scss' require("trix") ``` |
||
---|---|---|
.. | ||
actiontext.scss | ||
fixtures.yml | ||
installer.rb |