We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 261e198 commit 3b086e3Copy full SHA for 3b086e3
CHANGELOG.md
@@ -3,6 +3,7 @@
3
## v0.14.2 - 2021.8.19
4
5
- fix(ts-lib-tools): 修复打包时包含了 jest 的 `__snapshots__` 目录的缺陷
6
+- fix(ts-lib-tools): 修复新建的 monorepo 子模块发布之前不编译和发布失败的缺陷
7
8
## v0.14.1 - 2021.8.5
9
packages/ts-lib-tools/assets/module-template/package.json
@@ -10,7 +10,7 @@
10
"build": "ts-lib-tools build --simple",
11
"test": "ts-lib-tools test",
12
"lint": "ts-lib-tools lint",
13
- "release": "yarn publish dist --tag latest"
+ "release": "yarn build && yarn publish dist --tag latest"
14
},
15
"browserslist": {
16
"production": [
@@ -23,5 +23,8 @@
23
"last 1 firefox version",
24
"last 1 safari version"
25
]
26
+ },
27
+ "publishConfig": {
28
+ "access": "public"
29
}
30
0 commit comments