Skip to content

Commit a7934a0

Browse files
committed
chore: release3.0.1
1 parent 836cff5 commit a7934a0

File tree

5 files changed

+33
-9
lines changed

5 files changed

+33
-9
lines changed

.npmrc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
link-workspace-packages = true
1+
link-workspace-packages=true
2+
registry=https://registry.npmjs.org/

packages/cli/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# @pbts/cli
22

3+
## 3.0.1
4+
5+
### Patch Changes
6+
7+
- fix cli issue [#17](https://github.com/brandonxiang/pb-to-typescript/issues/17)
8+
- Updated dependencies [undefined]
9+
- @pbts/core@3.0.1
10+
311
## 3.0.0
412

513
### Major Changes

packages/cli/package.json

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "pbts",
3-
"version": "3.0.0",
3+
"version": "3.0.1",
44
"description": "cli for pb-to-typescript",
55
"author": "weiping.xiang <[email protected]>",
66
"homepage": "https://github.com/brandonxiang/pb-to-typescript#readme",
@@ -9,10 +9,12 @@
99
"main": "src/index.js",
1010
"directories": {
1111
"src": "src",
12-
"test": "__tests__"
12+
"fixtures": "fixtures",
13+
"test": "tests"
1314
},
1415
"files": [
15-
"src"
16+
"src",
17+
"tests"
1618
],
1719
"repository": {
1820
"type": "git",
@@ -27,7 +29,7 @@
2729
"dependencies": {
2830
"fs-extra": "^9.0.1",
2931
"globby": "^11.0.0",
30-
"@pbts/core": "^3.0.0",
32+
"@pbts/core": "^3.0.1",
3133
"pkg-updater": "^1.0.4",
3234
"protobufjs": "^7.2.3",
3335
"shelljs": "^0.8.5",
@@ -44,5 +46,8 @@
4446
},
4547
"bin": {
4648
"pbts": "bin.js"
49+
},
50+
"publishConfig": {
51+
"access": "public"
4752
}
4853
}

packages/core/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @pbts/core
22

3+
## 3.0.1
4+
5+
### Patch Changes
6+
7+
- fix cli issue [#17](https://github.com/brandonxiang/pb-to-typescript/issues/17)
8+
39
## 3.0.0
410

511
### Major Changes

packages/core/package.json

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pbts/core",
3-
"version": "3.0.0",
3+
"version": "3.0.1",
44
"description": "pbts core",
55
"author": "weiping.xiang <[email protected]>",
66
"homepage": "https://github.com/brandonxiang/pb-to-typescript#readme",
@@ -13,11 +13,12 @@
1313
},
1414
"type": "module",
1515
"directories": {
16-
"lib": "lib",
17-
"test": "tests"
16+
"src": "src",
17+
"test": "tests",
18+
"types": "types"
1819
},
1920
"files": [
20-
"lib",
21+
"src",
2122
"types"
2223
],
2324
"repository": {
@@ -40,5 +41,8 @@
4041
"typescript": "^5.0.4",
4142
"uvu": "^0.5.6",
4243
"ts-unused-exports": "^9.0.4"
44+
},
45+
"publishConfig": {
46+
"access": "public"
4347
}
4448
}

0 commit comments

Comments
 (0)