@forge/tunnel 3.3.0-next.8-experimental-3fb944e → 3.3.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
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @forge/tunnel
|
|
2
2
|
|
|
3
|
-
## 3.3.0
|
|
3
|
+
## 3.3.0
|
|
4
4
|
|
|
5
5
|
### Minor Changes
|
|
6
6
|
|
|
@@ -8,17 +8,60 @@
|
|
|
8
8
|
|
|
9
9
|
### Patch Changes
|
|
10
10
|
|
|
11
|
+
- 8db8d54: Don't try bundling optional packages with native extensions
|
|
12
|
+
- Updated dependencies [0d36e72]
|
|
13
|
+
- Updated dependencies [8db8d54]
|
|
11
14
|
- Updated dependencies [d9ebc65]
|
|
12
15
|
- Updated dependencies [db2615bd]
|
|
13
|
-
- Updated dependencies [
|
|
16
|
+
- Updated dependencies [149ebb5]
|
|
14
17
|
- Updated dependencies [dc0e198]
|
|
15
18
|
- Updated dependencies [47a05cd]
|
|
16
19
|
- Updated dependencies [081aaa9]
|
|
20
|
+
- Updated dependencies [9614f64]
|
|
17
21
|
- Updated dependencies [6f454d7]
|
|
18
|
-
- @forge/
|
|
19
|
-
- @forge/
|
|
20
|
-
- @forge/runtime@4.3.1
|
|
21
|
-
|
|
22
|
+
- @forge/cli-shared@3.8.0
|
|
23
|
+
- @forge/bundler@4.6.1
|
|
24
|
+
- @forge/runtime@4.3.1
|
|
25
|
+
|
|
26
|
+
## 3.3.0-next.13
|
|
27
|
+
|
|
28
|
+
### Patch Changes
|
|
29
|
+
|
|
30
|
+
- Updated dependencies [9614f64]
|
|
31
|
+
- @forge/cli-shared@3.8.0-next.7
|
|
32
|
+
- @forge/bundler@4.6.1-next.13
|
|
33
|
+
|
|
34
|
+
## 3.3.0-next.12
|
|
35
|
+
|
|
36
|
+
### Patch Changes
|
|
37
|
+
|
|
38
|
+
- Updated dependencies [149ebb5]
|
|
39
|
+
- @forge/cli-shared@3.8.0-next.6
|
|
40
|
+
- @forge/bundler@4.6.1-next.12
|
|
41
|
+
|
|
42
|
+
## 3.3.0-next.11
|
|
43
|
+
|
|
44
|
+
### Patch Changes
|
|
45
|
+
|
|
46
|
+
- 8db8d54: Don't try bundling optional packages with native extensions
|
|
47
|
+
- Updated dependencies [8db8d54]
|
|
48
|
+
- @forge/bundler@4.6.1-next.11
|
|
49
|
+
|
|
50
|
+
## 3.3.0-next.10
|
|
51
|
+
|
|
52
|
+
### Patch Changes
|
|
53
|
+
|
|
54
|
+
- Updated dependencies [0d36e724]
|
|
55
|
+
- @forge/cli-shared@3.8.0-next.5
|
|
56
|
+
- @forge/bundler@4.6.1-next.10
|
|
57
|
+
|
|
58
|
+
## 3.3.0-next.9
|
|
59
|
+
|
|
60
|
+
### Patch Changes
|
|
61
|
+
|
|
62
|
+
- @forge/bundler@4.6.1-next.9
|
|
63
|
+
- @forge/cli-shared@3.8.0-next.4
|
|
64
|
+
- @forge/runtime@4.3.1-next.1
|
|
22
65
|
|
|
23
66
|
## 3.3.0-next.8
|
|
24
67
|
|
|
@@ -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
|
|
3
|
+
"version": "3.3.0",
|
|
4
4
|
"description": "Tunnel functionality for Forge CLI",
|
|
5
5
|
"author": "Atlassian",
|
|
6
6
|
"license": "UNLICENSED",
|
|
@@ -11,10 +11,10 @@
|
|
|
11
11
|
"compile": "tsc -b -v"
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"@forge/bundler": "4.6.1
|
|
15
|
-
"@forge/cli-shared": "3.8.0
|
|
16
|
-
"@forge/csp": "2.1.1
|
|
17
|
-
"@forge/runtime": "4.3.1
|
|
14
|
+
"@forge/bundler": "4.6.1",
|
|
15
|
+
"@forge/cli-shared": "3.8.0",
|
|
16
|
+
"@forge/csp": "2.1.1",
|
|
17
|
+
"@forge/runtime": "4.3.1",
|
|
18
18
|
"express": "^4.17.1",
|
|
19
19
|
"express-intercept": "^0.8.10",
|
|
20
20
|
"http-proxy-middleware": "^1.0.6",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"webpack-dev-server": "^4.11.1"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
|
-
"@forge/manifest": "4.8.0
|
|
29
|
+
"@forge/manifest": "4.8.0",
|
|
30
30
|
"@types/express": "^4.17.2",
|
|
31
31
|
"@types/jest": "^29.1.2",
|
|
32
32
|
"@types/node": "^12.12.63",
|