Skip to content

Commit a3b87c9

Browse files
committed
feat: add changeset
1 parent e6f0ffe commit a3b87c9

File tree

10 files changed

+1421
-2676
lines changed

10 files changed

+1421
-2676
lines changed

.changeset/README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Changesets
2+
3+
Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works
4+
with multi-package repos, or single-package repos to help you version and publish your code. You can
5+
find the full documentation for it [in our repository](https://github.com/changesets/changesets)
6+
7+
We have a quick list of common questions to get you started engaging with this project in
8+
[our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md)

.changeset/config.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"$schema": "https://unpkg.com/@changesets/config@3.1.2/schema.json",
3+
"changelog": "@changesets/cli/changelog",
4+
"commit": false,
5+
"fixed": [
6+
7+
],
8+
"linked": [],
9+
"access": "restricted",
10+
"baseBranch": "main",
11+
"updateInternalDependencies": "patch",
12+
"ignore": []
13+
}

.changeset/fair-parts-live.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
'@lyric-render/core': major
3+
'@lyric-render/react': major
4+
'@lyric-render/vue': major
5+
---
6+
7+
core 核心工具层依赖包,react组件包,vue组件包

.npmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
registry=https://registry.npmmirror.com
1+
registry=https://registry.npmjs.org/

package.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@
1313
"format": "prettier --write .",
1414
"prepare": "husky",
1515
"commit": "git cz",
16-
"lint:md": "markdownlint README.md"
16+
"lint:md": "markdownlint README.md",
17+
"changeset:add": "pnpm changeset add",
18+
"changeset:publish": "pnpm changeset publish"
1719
},
1820
"keywords": [
1921
"lyric-render",
@@ -47,5 +49,8 @@
4749
"packageManager": "pnpm@10.25.0",
4850
"engines": {
4951
"node": ">=16.0.0"
52+
},
53+
"dependencies": {
54+
"@changesets/cli": "^2.29.8"
5055
}
5156
}

packages/core/package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
"name": "@lyric-render/core",
33
"version": "1.0.0",
44
"description": "歌词渲染解析的核心包",
5+
"publishConfig": {
6+
"access": "public"
7+
},
58
"type": "module",
69
"main": "dist/index.cjs",
710
"module": "dist/index.esm.js",

packages/react/package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
"name": "@lyric-render/react",
33
"version": "1.0.0",
44
"description": "歌词渲染解析的React组件包",
5+
"publishConfig": {
6+
"access": "public"
7+
},
58
"type": "module",
69
"main": "dist/index.cjs",
710
"module": "dist/index.esm.js",

packages/vue/package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
"name": "@lyric-render/vue",
33
"version": "1.0.0",
44
"description": "歌词渲染解析的Vue组件包",
5+
"publishConfig": {
6+
"access": "public"
7+
},
58
"type": "module",
69
"main": "dist/index.cjs.js",
710
"module": "dist/index.es.js",

0 commit comments

Comments
 (0)