@webiny/cli 5.41.0-dbt.0 → 5.41.1-beta.0

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.
Files changed (2) hide show
  1. package/package.json +4 -4
  2. package/types.d.ts +1 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webiny/cli",
3
- "version": "5.41.0-dbt.0",
3
+ "version": "5.41.1-beta.0",
4
4
  "main": "index.js",
5
5
  "bin": {
6
6
  "webiny": "./bin.js"
@@ -13,8 +13,8 @@
13
13
  "author": "Pavel Denisjuk <pavel@webiny.com>",
14
14
  "description": "A tool to bootstrap a Webiny project.",
15
15
  "dependencies": {
16
- "@webiny/telemetry": "5.41.0-dbt.0",
17
- "@webiny/wcp": "5.41.0-dbt.0",
16
+ "@webiny/telemetry": "5.41.1-beta.0",
17
+ "@webiny/wcp": "5.41.1-beta.0",
18
18
  "boolean": "3.2.0",
19
19
  "camelcase": "5.3.1",
20
20
  "chalk": "4.1.2",
@@ -65,5 +65,5 @@
65
65
  ]
66
66
  }
67
67
  },
68
- "gitHead": "bbaec4dd1685579548c08bbde386aee5d96b80f8"
68
+ "gitHead": "004f3d7a2022be14f14bd2f9342d009d7974ccd0"
69
69
  }
package/types.d.ts CHANGED
@@ -2,9 +2,6 @@
2
2
  * Rename file to types.ts when switching the package to Typescript.
3
3
  */
4
4
 
5
- import glob from "fast-glob";
6
- import { dirname, join } from "path";
7
-
8
5
  export type GenericRecordKey = string | number | symbol;
9
6
 
10
7
  export type GenericRecord<K extends GenericRecordKey = GenericRecordKey, V = any> = Record<K, V>;
@@ -166,7 +163,7 @@ export interface CliContext {
166
163
  resolve: (dir: string) => string;
167
164
 
168
165
  /**
169
- * Provides a way to store some meta data in the project's local ".webiny/cli.json" file.
166
+ * Provides a way to store some metadata in the project's local ".webiny/cli.json" file.
170
167
  * Only trivial data should be passed here, specific to the current project.
171
168
  */
172
169
  localStorage: {