From f083bf42862995729dc7d31972d3d63f1faf44bc Mon Sep 17 00:00:00 2001 From: renzp94 <1074720760@qq.com> Date: Sun, 28 Apr 2024 15:07:54 +0800 Subject: [PATCH] chore(release): 0.0.6 --- CHANGELOG.md | 7 +++++++ package.json | 12 ++++++++---- 2 files changed, 15 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 549bb47..348d5a7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +### [0.0.6](https://github.com/renzp94/utils/compare/v0.0.5...v0.0.6) (2024-04-28) + + +### Bug Fixes + +* 修复打包内容中重复导出的问题 ([e4fa1c3](https://github.com/renzp94/utils/commit/e4fa1c36d7178f191cb34432707b5e7d77673b9d)) + ### [0.0.5](https://github.com/renzp94/utils/compare/v0.0.4...v0.0.5) (2024-04-24) diff --git a/package.json b/package.json index 094f60a..fe72967 100644 --- a/package.json +++ b/package.json @@ -1,10 +1,12 @@ { "name": "@renzp/utils", - "version": "0.0.5", + "version": "0.0.6", "description": "一款零依赖、实用的Javascript/Typescript工具库", "type": "module", "main": "dist/index.js", - "files": ["dist"], + "files": [ + "dist" + ], "types": "dist/index.d.ts", "author": "renzp <1074720760.qq.com>", "repository": { @@ -15,7 +17,9 @@ "bugs": { "url": "https://github.com/renzp94/utils/issues" }, - "keywords": ["utils"], + "keywords": [ + "utils" + ], "license": "MIT", "publishConfig": { "registry": "https://registry.npmjs.org", @@ -23,7 +27,7 @@ }, "scripts": { "build": "bun run scripts/build.ts", - "pub": "standard-version && npm publish", + "pub:npm": "bun run scripts/pub-npm.ts", "pub:jsr": "bun run scripts/pub-jsr.ts", "docs:dev": "vitepress dev docs", "docs:build": "vitepress build docs",