@forge/tunnel 5.11.0-next.4 → 5.11.0-next.5
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,14 @@
|
|
|
1
1
|
# @forge/tunnel
|
|
2
2
|
|
|
3
|
+
## 5.11.0-next.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 3af315d: Use .cjs extension for the single wrapper
|
|
8
|
+
- Updated dependencies [3af315d]
|
|
9
|
+
- @forge/cli-shared@7.0.0-next.4
|
|
10
|
+
- @forge/bundler@4.23.2-next.5
|
|
11
|
+
|
|
3
12
|
## 5.11.0-next.4
|
|
4
13
|
|
|
5
14
|
### Patch Changes
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"node-sandbox.d.ts","sourceRoot":"","sources":["../../src/sandbox/node-sandbox.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"node-sandbox.d.ts","sourceRoot":"","sources":["../../src/sandbox/node-sandbox.ts"],"names":[],"mappings":"AAMA,OAAO,EACL,oBAAoB,EACpB,aAAa,EACb,gBAAgB,EAChB,OAAO,EACP,aAAa,EACb,SAAS,EAIV,MAAM,gBAAgB,CAAC;AACxB,OAAO,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAC;AAMnD,qBAAa,WAAY,YAAW,OAAO;IAOvC,OAAO,CAAC,QAAQ,CAAC,cAAc;IANjC,SAAgB,IAAI,EAAE,MAAM,CAAC;IAC7B,OAAO,CAAC,OAAO,CAAwB;IACvC,OAAO,CAAC,QAAQ,CAAC,SAAS,CAAkD;gBAG1E,EAAE,OAAO,EAAE,OAAO,EAAE,OAAO,EAAE,SAAS,EAAE,EAAE,aAAa,EACtC,cAAc,EAAE,cAAc;IAmDjD,OAAO,CAAC,YAAY;IAOd,OAAO,CACX,oBAAoB,EAAE,oBAAoB,EAC1C,gBAAgB,EAAE,aAAa,EAC/B,SAAS,CAAC,EAAE,SAAS,GAAG,SAAS,GAChC,OAAO,CAAC,gBAAgB,CAAC;IA+B5B,IAAI,IAAI,IAAI;CAGb"}
|
|
@@ -6,6 +6,7 @@ const child_process_1 = require("child_process");
|
|
|
6
6
|
const path_1 = tslib_1.__importDefault(require("path"));
|
|
7
7
|
const readline_1 = tslib_1.__importDefault(require("readline"));
|
|
8
8
|
const uuid_1 = require("uuid");
|
|
9
|
+
const bundler_1 = require("@forge/bundler");
|
|
9
10
|
const runtime_1 = require("@forge/runtime");
|
|
10
11
|
const RUNNER = path_1.default.join(__dirname, '..', '..', 'out', 'sandbox', 'sandbox-runner.js');
|
|
11
12
|
class NodeSandbox {
|
|
@@ -24,7 +25,7 @@ class NodeSandbox {
|
|
|
24
25
|
let handlerName;
|
|
25
26
|
let handlerEnv;
|
|
26
27
|
if (useSingleWrapper) {
|
|
27
|
-
fileName = path_1.default.join(appPath,
|
|
28
|
+
fileName = path_1.default.join(appPath, bundler_1.NODE_RUNTIME_CODE_FILE);
|
|
28
29
|
handlerName = 'main';
|
|
29
30
|
handlerEnv = '__forge__.main';
|
|
30
31
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@forge/tunnel",
|
|
3
|
-
"version": "5.11.0-next.
|
|
3
|
+
"version": "5.11.0-next.5",
|
|
4
4
|
"description": "Tunnel functionality for Forge CLI",
|
|
5
5
|
"author": "Atlassian",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
@@ -11,8 +11,8 @@
|
|
|
11
11
|
"compile": "tsc -b -v"
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"@forge/bundler": "4.23.2-next.
|
|
15
|
-
"@forge/cli-shared": "7.0.0-next.
|
|
14
|
+
"@forge/bundler": "4.23.2-next.5",
|
|
15
|
+
"@forge/cli-shared": "7.0.0-next.4",
|
|
16
16
|
"@forge/csp": "3.9.0-next.0",
|
|
17
17
|
"@forge/runtime": "5.10.8",
|
|
18
18
|
"cloudflared": "^0.7.0",
|