当前位置: 首页 > 工具软件 > npm-publish > 使用案例 >

npm库发布

穆丁雨
2023-12-01

npm config set registry https://registry.npmjs.org

npm 地址 https://github.com/waillyer/tcplayer-ui.git

创建项目

修改打包配置

tsconfig.build.json

{
    "compilerOptions": {
        "outDir": "dist", // 生成目录
        "module": "esnext", // 格式
        "target": "es5", // 版本
        "declaration": true, // 为每一个 ts 文件生成 .d.ts 文件
        "jsx": "react",
        "moduleResolution": "Node", // 规定寻找引入文件的路径为 node 标准
        "allowSyntheticDefaultImports": true
    },
    "include": [
        // 要编译哪些文件
        "src"
    ],
    "exclude": [
        // 排除不需要编译的文件
        "src/**/*.test.tsx",
        "src/**/*.stories.tsx",
        "src/setupTests.ts"
    ]
}

package.json

package.json 修改

"name": "tcplayer-ui",
    "version": "0.1.1",
    "private": false,
 "clean": "rimraf ./dist",
        "build": "npm run clean && npm run build-ts && npm run build-css",

登录 NPM 账号

先切换官方镜像源。

npm config set registry registry.npmjs.org/

检测当前账号是否登录:

npm whoami

如果未登录,则使用 npm adduser 进行账号登录。

运行命令 npm publish 即可完成 NPM 包的发布。

 类似资料: