3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

middleman buildしたらGruntを実行したかった

Posted at

Middleman単体でもHTML,CSS,JavaScriptの圧縮はしてくれるんだけど、CSScombとかもしたかったので別途Gruntを動かしてた。

…けど、2回もコマンド叩いてウェーイするのはアレだと思ってなんとかしたかった。

やりかた

  1. config.rbを編集する。
  2. middleman buildをたたく。

config.rbを編集する。

config.rb
class StartGrunt < Middleman::Extension
	def initialize(app, options_hash={}, &block)
		super
		app.after_build do |builder|
			builder.run 'grunt'
		end
	end
end
::Middleman::Extensions.register(:grunt, StartGrunt)

activate :grunt

参考

Middleman: カスタム拡張

middleman buildをたたく

$ middleman build
create …
・
・
・
run  grunt from "."
Running "csscomb:dist" (csscomb) task
>> Using default config file...
>> Sorting file "build/css/style.css"...

まとめ

もうちょっとなんとかなる気がしますが、
とりあえず、こんな拡張方法もあるよってことで。
チラ裏でした。

3
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?