-
Notifications
You must be signed in to change notification settings - Fork 28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bump to Bootstrap 4 #310
Bump to Bootstrap 4 #310
Conversation
Some of this is in: https://v4-alpha.getbootstrap.com/migration/ Otherwise I viewed source for the docs to do some of it.
e886bc5
to
3d2f165
Compare
"bootstrap": "^4.0.0-alpha.4" | ||
}, | ||
"scripts": { | ||
"postinstall" : "rm -rf wafer/static/vendor/ && mkdir wafer/static/vendor/ && rsync -a node_modules/* wafer/static/vendor/" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wouldn't using rsync --del and mkdir -p achieve the same result and be a bit shorter?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Awesome, TIL --del
is a thing.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If we're dropping bower, we need to update the install instructions in the README to reflect this.
Otherwise, looks OK.
Agreed. Updating the README. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
Using
npm
triggers/hooks/scripts sucks, but cleaner/tidier than using a script to wrap it all.Now comes the actual migration