byjove/tasks.py

17 lines
254 B
Python
Raw Normal View History

# -*- 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')