mirror of
https://github.com/embarklabs/embark.git
synced 2025-01-24 12:40:21 +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/")
|
|
|