node-karin 1.8.2 → 1.8.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 +8 -0
- package/dist/index.mjs +6 -6
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# 更新日志
|
|
2
2
|
|
|
3
|
+
## [1.8.3](https://github.com/KarinJS/Karin/compare/core-v1.8.2...core-v1.8.3) (2025-05-03)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### 🐛 Bug Fixes
|
|
7
|
+
|
|
8
|
+
* 修正axios ([8d093c0](https://github.com/KarinJS/Karin/commit/8d093c0f7cb2dfafdab79fd1ec8aa2a35f60b848))
|
|
9
|
+
* 更新axios版本至1.1.6 ([ee1b0b9](https://github.com/KarinJS/Karin/commit/ee1b0b94dfa58fc5d3774d75f31168c180b0073a))
|
|
10
|
+
|
|
3
11
|
## [1.8.2](https://github.com/KarinJS/Karin/compare/core-v1.8.1...core-v1.8.2) (2025-05-03)
|
|
4
12
|
|
|
5
13
|
|
package/dist/index.mjs
CHANGED
|
@@ -28211,11 +28211,11 @@ var init_installMarket = __esm({
|
|
|
28211
28211
|
async (_2, emitLog) => {
|
|
28212
28212
|
const args = ["add", data.target, "--save"];
|
|
28213
28213
|
if (isWorkspace()) args.push("-w");
|
|
28214
|
-
let
|
|
28214
|
+
let IS_ERR_PNPM_PUBLIC_HOIST_PATTERN_DIFF = false;
|
|
28215
28215
|
await spawnProcess("pnpm", args, {}, emitLog, () => {
|
|
28216
|
-
|
|
28216
|
+
IS_ERR_PNPM_PUBLIC_HOIST_PATTERN_DIFF = true;
|
|
28217
28217
|
});
|
|
28218
|
-
if (
|
|
28218
|
+
if (IS_ERR_PNPM_PUBLIC_HOIST_PATTERN_DIFF) {
|
|
28219
28219
|
emitLog("\u68C0\u6D4B\u5230 ERR_PNPM_PUBLIC_HOIST_PATTERN_DIFF \u9519\u8BEF\uFF0C\u5C1D\u8BD5\u4FEE\u590D...");
|
|
28220
28220
|
emitLog("\u6267\u884C pnpm install -f \u5F3A\u5236\u91CD\u5EFA\u6A21\u5757\u76EE\u5F55");
|
|
28221
28221
|
await spawnProcess("pnpm", ["install", "-f"], {}, emitLog);
|
|
@@ -28393,11 +28393,11 @@ var init_installCustom = __esm({
|
|
|
28393
28393
|
const args = ["add", pkg2, "--save"];
|
|
28394
28394
|
if (isWorkspace()) args.push("-w");
|
|
28395
28395
|
if (data.registry) args.push(`--registry=${data.registry}`);
|
|
28396
|
-
let
|
|
28396
|
+
let IS_ERR_PNPM_PUBLIC_HOIST_PATTERN_DIFF = false;
|
|
28397
28397
|
await spawnProcess("pnpm", args, {}, emitLog, () => {
|
|
28398
|
-
|
|
28398
|
+
IS_ERR_PNPM_PUBLIC_HOIST_PATTERN_DIFF = true;
|
|
28399
28399
|
});
|
|
28400
|
-
if (
|
|
28400
|
+
if (IS_ERR_PNPM_PUBLIC_HOIST_PATTERN_DIFF) {
|
|
28401
28401
|
emitLog("\u68C0\u6D4B\u5230 ERR_PNPM_PUBLIC_HOIST_PATTERN_DIFF \u9519\u8BEF\uFF0C\u5C1D\u8BD5\u4FEE\u590D...");
|
|
28402
28402
|
emitLog("\u6267\u884C pnpm install -f \u5F3A\u5236\u91CD\u5EFA\u6A21\u5757\u76EE\u5F55");
|
|
28403
28403
|
await spawnProcess("pnpm", ["install", "-f"], {}, emitLog);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-karin",
|
|
3
|
-
"version": "1.8.
|
|
3
|
+
"version": "1.8.3",
|
|
4
4
|
"description": "Lightweight, efficient, concise, and stable robot framework.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"node",
|
|
@@ -159,7 +159,7 @@
|
|
|
159
159
|
},
|
|
160
160
|
"dependencies": {
|
|
161
161
|
"art-template": "npm:@karinjs/art-template@1.1.0",
|
|
162
|
-
"axios": "npm:@karinjs/axios@1.
|
|
162
|
+
"axios": "npm:@karinjs/axios@1.1.6",
|
|
163
163
|
"chalk": "5.4.1",
|
|
164
164
|
"chokidar": "4.0.3",
|
|
165
165
|
"express": "npm:@karinjs/express@1.0.3",
|