RubyとMiddlemanを更新した

Rubyを2.4.0→2.4.1にしたついでにbundle updateした。middleman bulidしてみると

NOTE: Middleman::Sitemap::Resource#previous_article is deprecated; use article_previous instead. It will be removed on or after 2017-05-01.
NOTE: Middleman::Sitemap::Resource#next_article is deprecated; use article_next instead. It will be removed on or after 2017-05-01.

というのが出たが、それ以外には問題なかった。

と、思いきや。middleman serverしたところ

Error: Node Sass does not yet support your current environment: OS X 64-bit with Unsupported runtime (57)
For more information on which environments are supported please see:
https://github.com/sass/node-sass/releases/tag/v3.13.1

というようなエラーが発生した。buildで発生しなかったのは以前の実行でjsファイルが生成済みだったためで、明示的にwebpackを実行すると同じエラーが発生した。

npm rebuild node-sassすればよいということで、そのようにしたらエラーが出なくなった。