byjove/tasks.py
2023-01-07 13:01:53 -06:00

18 lines
317 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')
otp = c.run('otp npm').stdout.strip()
c.run('npm publish --otp {}'.format(otp))