byjove/tasks.py
Lance Edgar d87c4dfc50 Add basic 'tasks' file, for dev convenience
also, to test git commit hooks
2019-11-06 16:06:44 -06:00

17 lines
254 B
Python

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