@jayfong/x-server 1.33.2 → 1.33.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +2 -0
- package/lib/_cjs/cli/build_util.js +6 -1
- package/lib/cli/build_util.js +6 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
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.
|
|
4
4
|
|
|
5
|
+
### [1.33.3](https://github.com/jfWorks/x-server/compare/v1.33.2...v1.33.3) (2022-07-07)
|
|
6
|
+
|
|
5
7
|
### [1.33.2](https://github.com/jfWorks/x-server/compare/v1.33.1...v1.33.2) (2022-06-28)
|
|
6
8
|
|
|
7
9
|
### [1.33.1](https://github.com/jfWorks/x-server/compare/v1.33.0...v1.33.1) (2022-06-12)
|
|
@@ -164,7 +164,12 @@ class BuildUtil {
|
|
|
164
164
|
|
|
165
165
|
await (0, _execa.default)('tyn', {
|
|
166
166
|
cwd: distDir,
|
|
167
|
-
stdio: 'inherit'
|
|
167
|
+
stdio: 'inherit',
|
|
168
|
+
env: {
|
|
169
|
+
// 禁止 yarn 更新检测,因网络原因容易超时长时间卡住
|
|
170
|
+
// https://classic.yarnpkg.com/lang/en/docs/yarnrc/#toc-disable-self-update-check
|
|
171
|
+
yarn_disable_self_update_check: 'true'
|
|
172
|
+
}
|
|
168
173
|
}); // 打包为 tgz
|
|
169
174
|
|
|
170
175
|
await _compressing.default.tgz.compressDir(distDir, distBundleFile);
|
package/lib/cli/build_util.js
CHANGED
|
@@ -138,7 +138,12 @@ export class BuildUtil {
|
|
|
138
138
|
|
|
139
139
|
await exec('tyn', {
|
|
140
140
|
cwd: distDir,
|
|
141
|
-
stdio: 'inherit'
|
|
141
|
+
stdio: 'inherit',
|
|
142
|
+
env: {
|
|
143
|
+
// 禁止 yarn 更新检测,因网络原因容易超时长时间卡住
|
|
144
|
+
// https://classic.yarnpkg.com/lang/en/docs/yarnrc/#toc-disable-self-update-check
|
|
145
|
+
yarn_disable_self_update_check: 'true'
|
|
146
|
+
}
|
|
142
147
|
}); // 打包为 tgz
|
|
143
148
|
|
|
144
149
|
await compressing.tgz.compressDir(distDir, distBundleFile);
|