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

@ant-design/pro-cli

v3.2.1

Published

The command tool for ant design pro

Downloads

41,573

Readme

Cli for Ant Design Pro

Install

npm i @ant-design/pro-cli
# or
yarn add @ant-design/pro-cli

Commands

  • screenshot 对区块进行截图
  • i18n-remove 从项目中移除国际化
  • fetch-blocks 下载 pro 所有的官方区块
  • pro-components-codemod 自动更新 @ant-design/pro-components 的 import 方式

Options for the screenshot command

  • --path 区块的路径,可以用于只截图一个
  • --mobile 使用手机大小的屏幕进行截图

Options for the i18n-remove command

  • --locale 设置语言
  • --write 是否写入文件

Options for the pro-components-codemod command

  • --writePkg 是否自动更新 package.json 中的 dependencies 的添加/删除,默认开启
  • --cleanup 是否开启 cleanup 模式,默认开启
  • --path 需要更新文件的目录,默认 src 目录下的文件

debug

bash

DEBUG=pro-cli pro XXX

PowerShell

$env:DEBUG="pro-cli"
pro xxx

CMD

set DEBUG=pro-cli
pro xxx

Examples

pro

pro -h

screenshot

  • pro screenshot 对所有区块进行截图
  • pro screenshot --path DashboardWorkplace 对单个区块进行截图
  • pro screenshot --mobile 对所有区块进行截图
  • pro screenshot --dumi 使用 dumi 构建的资产,支持手机模式

i18n-remove

  • pro i18n-remove --write

  • pro i18n-remove --locale en-US --write

fetch-blocks

  • pro fetch-blocks

pro-components-codemod

  • pro pro-components-codemod 自动更新 package.json 中的 dependencies 的添加/删除,并将导入模块全部合并到一条 import 语句导入
  • pro pro-components-codemod --writePkg 0 不处理 package.json 中的 dependencies 的添加/删除,只进行 import 导入方式的更新
  • pro pro-components-codemod --path packages 处理 packages 目录下的文件
  • pro pro-components-codemod --cleanup 0 只更新子包的名称为 @ant-design/pro-components,保留旧项目的 import 方式