byjove/tasks.py

18 lines
317 B
Python
Raw Permalink 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')
2023-01-07 13:01:53 -06:00
otp = c.run('otp npm').stdout.strip()
c.run('npm publish --otp {}'.format(otp))