![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
components-manager
Advanced tools
npm install components-manager --dev
在项目根目录添加以下配置文件:components-manager.json
或者 components-manager.config.js
,使用 js 后缀可以使用回调函数。
配置文件类型是:MangerConfig
:
declare interface ManagerConfig {
/**
* 组件
*/
components: Array<ComponentInfo>
/**
* 发布脚本,默认是 npm publish
*/
publishCommand?: string
/**
* 所有组件都依赖的包
*/
dependencies?: string[]
/**
* 发布前的回调,【仅支持 js 配置文件】
*/
beforePublish?: (componentInfo?: ComponentInfo) => void
}
declare interface ComponentInfo {
/**
* 组件根目录的相对路径
*/
root: string
/**
* 组件的包名
*/
name: string
/**
* git 仓库地址
*/
git?: string
/**
* 代码引用的入口文件(相对路径于根目录),默认为 ./
*/
main?: string
/**
* 外部引用的入口文件夹,不用精确到文件,文件会自动从 main 中补全(相对路径于根目录),默认为 ./lib
*/
outputDir?: string
/**
* 编译产出路径,如果不设置,说明不需要产出,可以直接发布
*/
builtPath?: string
/**
* 依赖分析忽略的目录
*/
analyseIgnore?: string[]
}
components-manager -h
FAQs
```bash npm install components-manager --dev ```
We found that components-manager 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.