New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

hzero-cli-ui-builder

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

hzero-cli-ui-builder

Umi UI plugin umd builder based on webpack 5

unpublished
latest
Source
npmnpm
Version
0.0.4
Version published
Maintainers
1
Created
Source

hzero-cli-ui-builder

用于 Umi UI 插件前端构建打包。

约定

Umi UI 插件目录大致是这样,约定 ui/index.(tsx|jsx) 作为 UI 插件入口:

- umi-plugin-ui-bar
  - dist # ui 插件产物
    - index.umd.js
  - lib # 插件产物
    -index.js
  - src # 插件目录
    - index.ts
  - ui # ui 目录
    - index.tsx
  - package.json
  - .fatherrc.ts # father-build 构建 src 下 cjs
  - tsconfig.json

使用

安装

$ yarn add hzero-cli-ui-builder -D

在插件根目录 package.json,添加 ui-build

{
  "name": "umi-plugin-ui-bar",
  "scripts": {
    "ui:build": "ui-build"
  }
}

多 UI 插件

如果一插件里包括多个 ui umd 插件包,可以在根目录下配置 ui.config.js

module.exports = {
  entry: {
    bar: 'ui/bar.tsx',
    foo: 'ui/foo.tsx',
  }
}

打包后会有以下产物:

- dist
  - bar.umd.js
  - foo.umd.js

开发模式

工具提供开发模式,只需在 ui-build 后加上 -w--watch,即启动 watch 模式,改动相关文件即重构建:

$ npx ui-build
🎉 ui build success

$ npx ui-build -w
🌈 [watch] ui build success

FAQs

Package last updated on 06 Apr 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts