@webiny/project 6.4.4-beta.5 → 6.4.4-beta.7

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webiny/project",
3
- "version": "6.4.4-beta.5",
3
+ "version": "6.4.4-beta.7",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": "./index.js",
@@ -13,17 +13,17 @@
13
13
  "description": "An SDK for managing Webiny projects.",
14
14
  "license": "MIT",
15
15
  "dependencies": {
16
- "@webiny/aws-sdk": "6.4.4-beta.5",
17
- "@webiny/build-tools": "6.4.4-beta.5",
18
- "@webiny/di": "1.0.1",
19
- "@webiny/feature-flags": "6.4.4-beta.5",
20
- "@webiny/global-config": "6.4.4-beta.5",
21
- "@webiny/pulumi-sdk": "6.4.4-beta.5",
22
- "@webiny/react-properties": "6.4.4-beta.5",
23
- "@webiny/system-requirements": "6.4.4-beta.5",
24
- "@webiny/telemetry": "6.4.4-beta.5",
25
- "@webiny/utils": "6.4.4-beta.5",
26
- "@webiny/wcp": "6.4.4-beta.5",
16
+ "@webiny/aws-sdk": "6.4.4-beta.7",
17
+ "@webiny/build-tools": "6.4.4-beta.7",
18
+ "@webiny/di": "1.0.2",
19
+ "@webiny/feature-flags": "6.4.4-beta.7",
20
+ "@webiny/global-config": "6.4.4-beta.7",
21
+ "@webiny/pulumi-sdk": "6.4.4-beta.7",
22
+ "@webiny/react-properties": "6.4.4-beta.7",
23
+ "@webiny/system-requirements": "6.4.4-beta.7",
24
+ "@webiny/telemetry": "6.4.4-beta.7",
25
+ "@webiny/utils": "6.4.4-beta.7",
26
+ "@webiny/wcp": "6.4.4-beta.7",
27
27
  "chalk": "5.6.2",
28
28
  "chokidar": "5.0.0",
29
29
  "ci-info": "4.4.0",
@@ -36,12 +36,12 @@
36
36
  "find-up": "8.0.0",
37
37
  "get-tsconfig": "4.14.0",
38
38
  "graphql-request": "7.4.0",
39
- "humanize-duration": "3.33.2",
39
+ "humanize-duration": "3.34.0",
40
40
  "jsdom": "29.1.1",
41
41
  "load-json-file": "7.0.1",
42
42
  "lodash": "4.18.1",
43
43
  "minimatch": "10.2.5",
44
- "mqtt": "5.15.1",
44
+ "mqtt": "5.15.2",
45
45
  "neverthrow": "8.2.0",
46
46
  "p-retry": "8.0.0",
47
47
  "pino": "10.3.1",
@@ -51,7 +51,7 @@
51
51
  "replace-in-path": "1.1.0",
52
52
  "serialize-error": "13.0.1",
53
53
  "ts-morph": "28.0.0",
54
- "tsx": "4.21.0",
54
+ "tsx": "4.23.0",
55
55
  "write-json-file": "7.0.0",
56
56
  "zod": "4.4.3"
57
57
  },
@@ -61,7 +61,7 @@
61
61
  "@types/jsdom": "28.0.3",
62
62
  "@types/lodash": "4.17.24",
63
63
  "rimraf": "6.1.3",
64
- "type-fest": "5.7.0",
64
+ "type-fest": "5.8.0",
65
65
  "typescript": "6.0.3"
66
66
  },
67
67
  "adio": {
@@ -3,7 +3,7 @@ import { GetProjectService, LoggerService, ProjectSdkParamsService } from "../..
3
3
  import node_path from "node:path";
4
4
  import { pino } from "pino";
5
5
  import pino_pretty from "pino-pretty";
6
- import * as __rspack_external_node_fs_5ea92f0c from "node:fs";
6
+ import * as __rspack_external_node_fs_1b05aee1 from "node:fs";
7
7
  const DEFAULT_LOG_LEVEL = "info";
8
8
  class DefaultLoggerService {
9
9
  constructor(getProjectService, projectSdkParamsService){
@@ -56,11 +56,11 @@ class DefaultLoggerService {
56
56
  const project = this.getProjectService.execute();
57
57
  const logsFolderPath = project.paths.dotWebinyFolder.join("logs").toString();
58
58
  const logsFileName = this.getLogFileName();
59
- if (!__rspack_external_node_fs_5ea92f0c.existsSync(logsFolderPath)) __rspack_external_node_fs_5ea92f0c.mkdirSync(logsFolderPath, {
59
+ if (!__rspack_external_node_fs_1b05aee1.existsSync(logsFolderPath)) __rspack_external_node_fs_1b05aee1.mkdirSync(logsFolderPath, {
60
60
  recursive: true
61
61
  });
62
62
  const logFilePath = node_path.join(logsFolderPath, logsFileName);
63
- return __rspack_external_node_fs_5ea92f0c.createWriteStream(logFilePath, {
63
+ return __rspack_external_node_fs_1b05aee1.createWriteStream(logFilePath, {
64
64
  flags: "a"
65
65
  });
66
66
  }