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

@we-weaver/cli

v1.1.0-beta.5

Published

Cli tool for build we weaver

Downloads

11

Readme

Weaver cli

Quick start

安装包

  yarn global add @we-weaver/cli

or

  npm install @we-weaver/cli -g

初始化配置

安装成功后使用改命令初始化配置

  weaver config --init

登录

输入 OA 帐号密码即可

  weaver login

Usage

初始化组件或场景

tip:初始化时输入组件的名称即可,组件的类型会在创建成功后修改 例如 weaver init sidebar,选择业务组件,将会生成 basic-component-sidebar 目录,如果目录名称有误(没有正确的包含组件的类型),请手动调整名称。

  • 基础组件
  • 业务组件
  • 场景

  weaver init [组件或场景名称]

上传组件至组件平台

组件上传的标准是当前目录下存在 package.json 文件.


  weaver upload [目标目录或者当前目录]

打包

内置 (Bili)[https://bili.egoist.sh/#/] 打包工具

  weaver build <entry> [type=jsx|vue]

调试

内置 (Poi)[https://poi.js.org/] 调试工具

  weaver dev [entry] --serve

其它

如果需要调整调试或者打包配置, 在 package.json 中新增 weaver 字段或者新增 weaver.config.js 文件


  {
    ...
    "weaver": {
      // 上传配置
      "upload": {
        // 需要上传的目标仓库
        "repository_id": 5247,
        // 目标分支
        "target_branch": "master",
        // 上传需要忽略的文件或文件夹,会与 .gitignore 中的内容进行合并
        "excludes": [
          ".vscode",
          "node_modules",
          ".git",
          ".gitignore",
          ".DS_Store",
          "dist",
          "screenshots",
          "yarn.lock",
          "package.lock",
        ],
      },
      "buildConfig": {
        // https://poi.js.org/config.html
      },
      "devConfig": {
        // https://bili.egoist.sh/#/
      }
    }
  }