mirror of
https://github.com/embarklabs/embark.git
synced 2025-01-25 21:18:51 +00:00
8 lines
193 B
CoffeeScript
8 lines
193 B
CoffeeScript
module.exports = (grunt) ->
|
|
|
|
grunt.registerTask "ipfs", "distribute into ipfs", (env_) =>
|
|
env = env_ || "development"
|
|
Embark = require('embark-framework')
|
|
Embark.release.ipfs()
|
|
|