@forge/tunnel 2.0.3-next.1 → 2.1.0-next.2

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
@@ -1,5 +1,17 @@
1
1
  # @forge/tunnel
2
2
 
3
+ ## 2.1.0-next.2
4
+
5
+ ### Minor Changes
6
+
7
+ - 94c798f: Exit with error when a Forge command is not recognised
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [94c798f]
12
+ - @forge/cli-shared@3.2.0-next.2
13
+ - @forge/bundler@3.1.2-next.2
14
+
3
15
  ## 2.0.3-next.1
4
16
 
5
17
  ### Patch Changes
package/out/index.js CHANGED
@@ -35,7 +35,7 @@ exports.runTunnel = async () => {
35
35
  await tunnelInteractor.handleUserExitEvent(tunnel.stopFunction, monitor);
36
36
  }
37
37
  catch (e) {
38
- cli_shared_1.exitOnError(ui)(e);
38
+ cli_shared_1.exitOnError(ui, e);
39
39
  }
40
40
  };
41
41
  exports.runTunnel();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/tunnel",
3
- "version": "2.0.3-next.1",
3
+ "version": "2.1.0-next.2",
4
4
  "description": "Tunnel functionality for Forge CLI",
5
5
  "author": "Atlassian",
6
6
  "license": "UNLICENSED",
@@ -16,8 +16,8 @@
16
16
  "postbuild": "chmod +x out/*.js"
17
17
  },
18
18
  "dependencies": {
19
- "@forge/bundler": "3.1.2-next.1",
20
- "@forge/cli-shared": "3.2.0-next.1",
19
+ "@forge/bundler": "3.1.2-next.2",
20
+ "@forge/cli-shared": "3.2.0-next.2",
21
21
  "@forge/csp": "^2.0.0",
22
22
  "@forge/isolated-vm": "3.3.10",
23
23
  "@forge/runtime": "2.5.0",