
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
hzero-cli-ui-builder
Advanced tools
用于 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 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
Umi UI plugin umd builder based on webpack 5
We found that hzero-cli-ui-builder demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Security News
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.