@webiny/cli 5.24.0 → 5.25.0-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.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,18 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [5.25.0-beta.0](https://github.com/webiny/webiny-js/compare/v5.24.0...v5.25.0-beta.0) (2022-03-14)
7
+
8
+
9
+ ### Features
10
+
11
+ * enable sourcemaps for lambda functions ([#2272](https://github.com/webiny/webiny-js/issues/2272)) ([0694711](https://github.com/webiny/webiny-js/commit/0694711dca6b3c8f9f91858f97871d1660ad30df))
12
+ * strict typescript ([#2235](https://github.com/webiny/webiny-js/issues/2235)) ([c7c49e7](https://github.com/webiny/webiny-js/commit/c7c49e744667112a0013ea5370644f4df7eb800a))
13
+
14
+
15
+
16
+
17
+
6
18
  # [5.24.0](https://github.com/webiny/webiny-js/compare/v5.24.0-beta.0...v5.24.0) (2022-03-03)
7
19
 
8
20
  **Note:** Version bump only for package @webiny/cli
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webiny/cli",
3
- "version": "5.24.0",
3
+ "version": "5.25.0-beta.0",
4
4
  "main": "index.js",
5
5
  "bin": {
6
6
  "webiny": "./bin.js"
@@ -13,7 +13,7 @@
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.24.0",
16
+ "@webiny/telemetry": "5.25.0-beta.0",
17
17
  "boolean": "3.1.4",
18
18
  "camelcase": "5.3.1",
19
19
  "chalk": "4.1.2",
@@ -25,9 +25,9 @@
25
25
  "inquirer": "7.3.3",
26
26
  "open": "8.4.0",
27
27
  "pirates": "4.0.5",
28
- "semver": "7.3.4",
28
+ "semver": "7.3.5",
29
29
  "ts-morph": "11.0.3",
30
- "typescript": "4.1.3",
30
+ "typescript": "4.5.5",
31
31
  "uniqid": "5.4.0",
32
32
  "yargs": "14.2.3"
33
33
  },
@@ -63,5 +63,5 @@
63
63
  ]
64
64
  }
65
65
  },
66
- "gitHead": "be0cbfcaa9247c658c44179af7943cc5d6d71bc7"
66
+ "gitHead": "2d3e7833575e88fde77d84e5490e746933a5ec28"
67
67
  }
package/types.d.ts CHANGED
@@ -15,7 +15,7 @@ export interface PluginsContainer {
15
15
  * A simplified plugin interface, used specifically within the Webiny CLI.
16
16
  * Not in relation with "@webiny/plugins" package.
17
17
  */
18
- export interface Plugin<T = Record<string, any>> {
18
+ export interface Plugin {
19
19
  type: string;
20
20
  name?: string;
21
21
  [key: string]: any;