This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# The Cedar-14 stack is the latest version of the Heroku Cedar stack. | |
# It features updated system dependencies and runs on a recent version of Ubuntu Linux. | |
# Use this scipt to update all your apps. | |
# Fill this array with your apps' names. | |
apps=( app-name-1 app-name-2 app-name-3 app-name-4 ... app-name-n ) | |
for app in "${apps[@]}" | |
do |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"binary_file_patterns": | |
[ | |
"node_modules/", | |
"bower_components/", | |
"lib/", | |
"vendor" | |
], | |
"caret_extra_bottom": 1, | |
"caret_extra_top": 1, |