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

@milistack/theme-cli

v1.9.1

Published

CLI tool for setting up Shopify theme semantic releases

Readme

@milistack/theme-cli

A powerful CLI tool for automating Shopify theme development with semantic versioning, preview deployments, and GitHub integration.

Features

  • 🚀 Automated semantic versioning with semantic-release
  • 🔄 Preview themes for pull requests
  • 📦 GitHub Actions integration
  • 🛠️ Modern development workflow with Husky hooks
  • 📝 Automated changelog generation
  • 🔐 Secure theme deployment
  • ✨ Conventional commit enforcement
  • 🧪 Pre-commit test automation

Installation

npm install -g @milistack/theme-cli

Usage

Initialize a New Theme Project

mili-theme

This will:

  1. Set up your theme project structure
  2. Configure GitHub workflows
  3. Set up semantic versioning
  4. Configure Shopify CLI integration

Available Commands

# Show help
mili-theme --help

# Update workflows and configurations
mili-theme --sync

# Connect or reconnect to GitHub
mili-theme --connect-github

# List stored configurations
mili-theme --list-stores

# Use a stored configuration
mili-theme --use-stored

# Remove a stored configuration
mili-theme --remove-store <store-name>

Local Development

Want to contribute? Here's how to set up the CLI for local development:

Prerequisites

  • Node.js >= 20.0.0
  • npm >= 9.0.0
  • Git

Setup Local Development Environment

  1. Clone the Repository

    git clone https://github.com/pasquinphilippe/mili-release.git
    cd mili-release
  2. Install Dependencies

    npm install
  3. Setup Git Hooks The project uses Husky for Git hooks:

    • Pre-commit hook runs tests automatically
    • Commit-msg hook ensures conventional commit format

    Hooks are installed automatically during npm install via the prepare script.

  4. Development Scripts

    # Watch mode with auto-reload
    npm run dev
    
    # Run tests
    npm test
    
    # Create a release (CI environment)
    npm run semantic-release

Commit Convention

We use conventional commits with specific rules:

# Features (triggers minor version bump)
feat: add new command for X

# Bug fixes (triggers patch version bump)
fix: resolve issue with Y

# Breaking changes (triggers major version bump)
feat!: redesign CLI interface
fix!: drop support for Node 16

# Documentation (no version bump)
docs: update installation instructions

# Chores (no version bump)
chore: update dependencies

# Other types
test: add unit tests
refactor: improve code structure
style: format code
perf: improve performance

Commit messages are automatically validated with the following rules:

  • Type must be one of the above
  • Subject line must be in lowercase
  • Body lines must not exceed 200 characters
  • Breaking changes must be noted with ! or BREAKING CHANGE:

Release Process

Releases are fully automated using semantic-release:

  1. Staging Releases

    • Merges to staging create pre-releases
    • Version is determined by commit messages
    • Preview themes are created automatically
  2. Production Releases

    • Merges to main trigger production releases
    • Changelog is generated automatically
    • GitHub release is created
    • npm package is published
    • Version is bumped according to semantic versioning

To create a release locally (for testing):

# Ensure you're on main branch
git checkout main

# Run semantic-release
CI=true GITHUB_TOKEN=your-token npm run semantic-release

Troubleshooting

Common Issues

  1. Node Version Errors

    nvm use 20
    # or
    nvm install 20
  2. Permission Issues

    # If you get EACCES errors
    sudo npm install -g @milistack/theme-cli
  3. Workflow Sync Issues

    # Remove existing workflows and try again
    rm -rf .github/workflows
    mili-theme --sync
  4. Commit Validation Errors

    # If your commit message is rejected
    git commit --no-verify -m "your message"  # Bypass hooks (not recommended)
    # or
    HUSKY=0 git commit -m "your message"     # Bypass Husky
  5. Release Process Issues

    # If semantic-release fails
    HUSKY=0 CI=true GITHUB_TOKEN=your-token npm run semantic-release

License

MIT © Milistack Group inc

Support

Need help? Open an issue or contact the maintainers.