kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
0 B
8 lines
0 B
8 years ago
|
#!/bin/sh
|
||
|
#
|
||
|
# Deletes bundled javascript assets and rebuilds them.
|
||
|
# Useful for when your frontend doesn't work (jQuery not defined etc.) for seemingly no reason at all.
|
||
|
rm -rf app/assets/javascripts/bundles/*
|
||
|
bundle install && npm install && npm run webpack
|
||
|
|