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

@train860/theme-compress

v0.0.7

Published

CLI and library to compress theme assets and update theme.json hashes

Readme

theme-compress

统一的主题静态资源压缩工具,可作为 CLI 或库使用。主要能力:

  • 压缩 assets/cssassets/js 下的文件至 dist/cssdist/js
  • 为文件名追加哈希值并更新 theme.json 中的 assets 映射。
  • 提供 CLI 工具 theme-compress 方便集成在脚本和 CI/CD 中。

安装

npm install theme-compress --save-dev
# 或者
pnpm add -D theme-compress

CLI 使用

npx theme-compress [选项]

常用选项:

  • --root <path> 指定主题根目录(默认当前目录)。
  • --assets <path> 静态资源目录,相对 root,默认 assets
  • --dist <path> 输出目录,相对 root,默认 dist
  • --theme-json <path> theme.json 相对路径,默认 theme.json
  • --hash-length <number> 文件名哈希长度,默认 10
  • --no-clean 禁止清空 dist/cssdist/js 目录。
  • --silent 仅输出错误。

示例:

npx theme-compress --root ../my-theme --hash-length 12

编程式使用

const { compressTheme } = require('theme-compress');

(async () => {
  await compressTheme({
    rootDir: '/path/to/theme',
    assetsDir: 'assets',
    distDir: 'dist',
    themeJson: 'theme.json',
    hashLength: 8
  });
})();

发布准备

  1. 在项目根目录执行 npm login(首次发布)。
  2. 切换到 packages/theme-compress/ 目录。
  3. 运行 npm publish --access public

发布前请根据需要更新 versiondescription 以及 author 字段。