@forge/tunnel 3.3.0-next.10 → 3.3.0-next.12

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,21 @@
1
1
  # @forge/tunnel
2
2
 
3
+ ## 3.3.0-next.12
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [149ebb5]
8
+ - @forge/cli-shared@3.8.0-next.6
9
+ - @forge/bundler@4.6.1-next.12
10
+
11
+ ## 3.3.0-next.11
12
+
13
+ ### Patch Changes
14
+
15
+ - 8db8d54: Don't try bundling optional packages with native extensions
16
+ - Updated dependencies [8db8d54]
17
+ - @forge/bundler@4.6.1-next.11
18
+
3
19
  ## 3.3.0-next.10
4
20
 
5
21
  ### Patch Changes
@@ -101,7 +101,7 @@ class LocalDevelopmentServer {
101
101
  return new Promise((resolve, reject) => {
102
102
  compiler.watch({ poll: 1000 }, async (compilerError, stats) => {
103
103
  try {
104
- (0, bundler_2.handleWebpackCompilationResult)(compilerError, stats);
104
+ (0, bundler_2.handleWebpackCompilationResult)(this.logger, compilerError, stats);
105
105
  this.logger.info(cli_shared_1.LogColor.trace(cli_shared_1.Text.tunnel.functionsBundlingSucceeded));
106
106
  const bundle = (0, bundler_2.getInMemoryBundle)(config);
107
107
  if (!isFirstRun) {
@@ -62,7 +62,7 @@ class NativeUITunnelServer extends resource_tunnel_server_1.ResourceTunnelServer
62
62
  compiler.hooks.done.tapAsync('done', async (stats, doneCallback) => {
63
63
  const maybeError = stats.hasErrors() ? stats.compilation.getErrors()[0] : undefined;
64
64
  try {
65
- (0, bundler_1.handleWebpackCompilationResult)(maybeError, stats);
65
+ (0, bundler_1.handleWebpackCompilationResult)(this.logger, maybeError, stats);
66
66
  this.logger.info(cli_shared_1.LogColor.trace(cli_shared_1.Text.tunnel.resourcesBundlingSucceeded));
67
67
  if (!isFirtCompilation) {
68
68
  await onBuildFinished(null);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/tunnel",
3
- "version": "3.3.0-next.10",
3
+ "version": "3.3.0-next.12",
4
4
  "description": "Tunnel functionality for Forge CLI",
5
5
  "author": "Atlassian",
6
6
  "license": "UNLICENSED",
@@ -11,8 +11,8 @@
11
11
  "compile": "tsc -b -v"
12
12
  },
13
13
  "dependencies": {
14
- "@forge/bundler": "4.6.1-next.10",
15
- "@forge/cli-shared": "3.8.0-next.5",
14
+ "@forge/bundler": "4.6.1-next.12",
15
+ "@forge/cli-shared": "3.8.0-next.6",
16
16
  "@forge/csp": "2.1.1",
17
17
  "@forge/runtime": "4.3.1-next.1",
18
18
  "express": "^4.17.1",