# -*- coding: utf-8; -*- """ Tasks for 'byjove' project """ from invoke import task @task def release(c): """ Release a new version of 'byjove' """ c.run("find . -name '*~' -delete") c.run('npm run build') c.run('npm publish')