embark/tasks/ipfs.coffee

8 lines
193 B
CoffeeScript
Raw Normal View History

2015-06-06 02:54:37 +00:00
module.exports = (grunt) ->
grunt.registerTask "ipfs", "distribute into ipfs", (env_) =>
2015-07-04 02:27:17 +00:00
env = env_ || "development"
Embark = require('embark-framework')
2015-07-04 02:27:17 +00:00
Embark.release.ipfs()
2015-06-06 02:54:37 +00:00