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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@xyfebaby/cms-uniapp

v0.3.52

Published

CMS对应uniapp组件

Downloads

87

Readme

CMS 小程序组件

使用

yarn add @xyfebaby/cms-uniapp
<script>
// 直接导入.vue文件,uni-app不支持引入打包后的文件
import Banner from '@xyfebaby/cms-uniapp/src/components/Banner'

export default {
  components: {
    Banner,
  }
}
</script>

开发调试使用

  1. 在本仓库(cms-uniapp)使用yarn link 链接到全局,
  2. 在需要调试的项目中(例:feng-go-uniapp)使用yarn link @xyfebaby/cms-uniapp
  3. 进行本地调试

发布流程

  • 确保当前的改动都已经提交,工作区是干净的

  • 执行 yarn standard-version -r [version]

# version 可以是`major`,`minor`,`patch`,除此之外还可以直接输入目标版本号

# 发布一个patch版本
yarn standard-version -r major

# 手动指定目标版本号
yarn standard-version -r 1.2.3

执行成功后,会自动生成CHANGELOG、修改版本号、创建一次当前改动文件的提交(standard-version文档)

yarn standard-version -r 0.1.8
yarn run v1.22.4
$ standard-version -r  0.1.8
✔ bumping version in package.json from 0.1.7 to 0.1.8
✔ outputting changes to CHANGELOG.md
✔ committing package.json and CHANGELOG.md

> @xyfebaby/[email protected] lint-staged
> lint-staged

→ No staged files match any configured task.

✔ tagging release v0.1.8
ℹ Run `git push --follow-tags origin dev && npm publish` to publish
✨  Done in 1.80s.
  • 把创建的提交和标签推送到远端,提交合并请求到master分支,合并后即可触发发布脚本