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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@elora-cloud/elora-cli

v1.0.7

Published

elora build cli 前端打包脚手架

Downloads

350

Readme

@elora-cloud/elora-cli

一个前端打包脚手架

github地址

gitee地址

开始

pnpm add -D @elora-cloud/elora-cli

支持的功能:

  • commit-lint
  • changelog
  • release

commit-lint

代码提交规范

配置

要使用 commit-lint,您需要设置 hookcommit-msg

使用 git hooks 管理器

要在创建提交之前对其进行 lint 提交,您可以使用 Husky 的钩子。commit-msg

您可以在官方文档中找到完整的设置说明。

pnpm add -D husky
pnpm exec husky init

添加到commit-msg钩子中

echo '#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

pnpm --no-install elora commit-lint "${1}"
' > .husky/commit-msg

案例

monorepo项目例子如下:

  • fix(cli): 子项目cli的changelog
  • feat(ui): 子项目UI库的changelog
  • fix: 全局的changelog

普通项目例子如下:

  • fix: 这是提交的项目信息
  • feat: 子项目UI库的changelog

支持提交的类型:

  • fix:修复 bug
  • feat:新特性或者新功能
  • docs:文档
  • perf:性能
  • test:测试
  • types:类型
  • build:构建
  • chore:杂项
  • release:发布
  • refactor:重构
  • breaking change:破坏性变更
  • Merge branch 'foo' into 'bar'

changelog

添加changelog命令到package.json

npm pkg set scripts.changelog="elora changelog"

运行命令

pnpm run changelog

等待一段时间生成CHANGELOG.md文件

release

添加release命令到package.json

npm pkg set scripts.release="elora release"

运行命令

pnpm run release

执行release命令时请确保本地文件已经全部提交git

release会顺序调用

pnpm build
elora changelog
pnpm publish

等功能