npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

mpycz

v1.1.2

Published

Paquete para automatizar el bump, push y refactor del changelog para los proyectos de Macropay.

Readme

mpycz

Descripción

Este proyecto está diseñado para refactorizar los archivos CHANGELOG.md generados utilizando la librería Commitizen. Simplifica el proceso de actualización de versiones, genera un changelog con un formato más estándar y automatiza tareas clave como subir cambios a GitHub.

Requisitos

  • Python: Debes tener instalado Python en la versión 3.10.x o superior.
  • Configuración de GitHub: Asegúrate de que tu usuario de GitHub esté configurado correctamente en la terminal de Git Bash.

Instalación

  1. Instala el paquete a través de npm:

    npm install -g mpycz
  2. Verifica que el comando mpbump esté disponible:

    mpbump --version

Uso

Comando principal

El comando principal es:

mpbump

Este comando realiza las siguientes acciones:

  1. Actualización de versión: Ejecuta internamente el comando cz bump, que incrementa la versión del proyecto de manera automática (por ejemplo, de 1.0.2 a 1.0.3) y genera un changelog con los últimos cambios.

  2. Refactorización del CHANGELOG.md: Un script interno de Python ajusta el formato del archivo CHANGELOG.md para hacerlo más estándar y agrega:

    • El nombre del usuario que realizó el commit.
  3. Push automático: Hace un push automático de los cambios a la rama de origen en GitHub.

Opciones adicionales

Evitar el push automático

Si deseas evitar que los cambios se suban automáticamente a GitHub, puedes usar la bandera --noPush:

mpbump --noPush

Esto ejecutará el resto de las acciones sin hacer el push al repositorio remoto.

Consideraciones

  1. Archivo CHANGELOG.md inicial: Antes de usar mpbump por primera vez, debes haber generado al menos un archivo CHANGELOG.md usando el comando original cz bump de Commitizen. Una vez hecho esto, ya no será necesario volver a usar dicho comando.

  2. No reemplaza comandos de Git: Este paquete no sustituye los comandos:

    • git add .
    • cz commit

    Por lo tanto, asegúrate de ejecutar esos comandos antes de usar mpbump.

Ejemplo de uso

git add .
cz commit
mpbump