github.com/ernestokarim/closurer@v0.0.0-20130119214741-f245d086c750/hooks/post-compile.go (about)

     1  package hooks
     2  
     3  import (
     4  	"github.com/ernestokarim/closurer/cache"
     5  )
     6  
     7  // Called after each compilation tasks.
     8  // It saves the caches.
     9  func PostCompile() error {
    10  	return cache.Dump()
    11  }