mirror of
https://github.com/status-im/embark-area-51.git
synced 2025-01-19 19:58:54 +00:00
8 lines
205 B
CoffeeScript
8 lines
205 B
CoffeeScript
|
module.exports = (grunt) ->
|
||
|
|
||
|
grunt.registerTask "ipfs", "distribute into ipfs", (env_) =>
|
||
|
env = env_ || "development"
|
||
|
Embark = require('embark-framework')
|
||
|
Embark.release.ipfs("dist/dapp/")
|
||
|
|