@forge/tunnel 5.11.1-next.4 → 5.11.1-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 +12 -0
- package/out/command/interactors/tunnel-interactor.d.ts +3 -2
- package/out/command/interactors/tunnel-interactor.d.ts.map +1 -1
- package/out/command/interactors/tunnel-interactor.js +5 -3
- package/out/sandbox/node-sandbox.d.ts +1 -3
- package/out/sandbox/node-sandbox.d.ts.map +1 -1
- package/out/sandbox/node-sandbox.js +24 -40
- package/out/servers/dev-server.d.ts.map +1 -1
- package/out/servers/dev-server.js +2 -3
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @forge/tunnel
|
|
2
2
|
|
|
3
|
+
## 5.11.1-next.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 75b7732: Remove feature flag for single wrapper packaging
|
|
8
|
+
- 64befbb: Refactor runtime version manifest check into a linter
|
|
9
|
+
- fd9e085: Fix for the request body for some requests being stripped
|
|
10
|
+
- Updated dependencies [75b7732]
|
|
11
|
+
- Updated dependencies [64befbb]
|
|
12
|
+
- @forge/cli-shared@7.1.0-next.5
|
|
13
|
+
- @forge/bundler@5.0.1-next.5
|
|
14
|
+
|
|
3
15
|
## 5.11.1-next.4
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
import { WatcherMonitor } from '@forge/bundler';
|
|
2
|
-
import { Logger, TunnelOptions } from '@forge/cli-shared';
|
|
2
|
+
import { Logger, TunnelOptions, StatsigService } from '@forge/cli-shared';
|
|
3
3
|
import { StartTunnelResult } from '../start-tunnel-command';
|
|
4
4
|
import chokidar, { FSWatcher } from 'chokidar';
|
|
5
5
|
export declare class TunnelInteractor {
|
|
6
6
|
private readonly logger;
|
|
7
|
-
|
|
7
|
+
private readonly statsigService;
|
|
8
|
+
constructor(logger: Logger, statsigService: StatsigService);
|
|
8
9
|
handleUserExitEvent(stopFunction: () => Promise<void>, bundleMonitor: WatcherMonitor | undefined, manifestFileWatcher: FSWatcher): Promise<void>;
|
|
9
10
|
watchAndWarnOnManifestChanges(manifestFilePath: string): chokidar.FSWatcher;
|
|
10
11
|
watchApp: (startTunnelResult: StartTunnelResult, tunnelOptions?: TunnelOptions) => Promise<WatcherMonitor | undefined>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tunnel-interactor.d.ts","sourceRoot":"","sources":["../../../src/command/interactors/tunnel-interactor.ts"],"names":[],"mappings":"AACA,OAAO,EAA4B,cAAc,EAAE,MAAM,gBAAgB,CAAC;AAC1E,OAAO,EAAyC,MAAM,EAAQ,aAAa,EAAE,MAAM,mBAAmB,CAAC;
|
|
1
|
+
{"version":3,"file":"tunnel-interactor.d.ts","sourceRoot":"","sources":["../../../src/command/interactors/tunnel-interactor.ts"],"names":[],"mappings":"AACA,OAAO,EAA4B,cAAc,EAAE,MAAM,gBAAgB,CAAC;AAC1E,OAAO,EAAyC,MAAM,EAAQ,aAAa,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAC;AACvH,OAAO,EAAE,iBAAiB,EAAE,MAAM,yBAAyB,CAAC;AAG5D,OAAO,QAAQ,EAAE,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;AAE/C,qBAAa,gBAAgB;IAGzB,OAAO,CAAC,QAAQ,CAAC,MAAM;IAFzB,OAAO,CAAC,QAAQ,CAAC,cAAc,CAAiB;gBAE7B,MAAM,EAAE,MAAM,EAC/B,cAAc,EAAE,cAAc;IAKzB,mBAAmB,CACxB,YAAY,EAAE,MAAM,OAAO,CAAC,IAAI,CAAC,EACjC,aAAa,EAAE,cAAc,GAAG,SAAS,EACzC,mBAAmB,EAAE,SAAS,GAC7B,OAAO,CAAC,IAAI,CAAC;IAsCT,6BAA6B,CAAC,gBAAgB,EAAE,MAAM;IAUtD,QAAQ,sBACM,iBAAiB,kBACrB,aAAa,KAC3B,QAAQ,cAAc,GAAG,SAAS,CAAC,CA4DpC;CACH"}
|
|
@@ -10,8 +10,10 @@ const fs_1 = tslib_1.__importDefault(require("fs"));
|
|
|
10
10
|
const chokidar_1 = tslib_1.__importDefault(require("chokidar"));
|
|
11
11
|
class TunnelInteractor {
|
|
12
12
|
logger;
|
|
13
|
-
|
|
13
|
+
statsigService;
|
|
14
|
+
constructor(logger, statsigService) {
|
|
14
15
|
this.logger = logger;
|
|
16
|
+
this.statsigService = statsigService;
|
|
15
17
|
}
|
|
16
18
|
handleUserExitEvent(stopFunction, bundleMonitor, manifestFileWatcher) {
|
|
17
19
|
return new Promise((resolve, reject) => {
|
|
@@ -63,7 +65,7 @@ class TunnelInteractor {
|
|
|
63
65
|
this.logger.info('');
|
|
64
66
|
this.logger.info(cli_shared_1.Text.bundle.detectedChanges);
|
|
65
67
|
if (tunnelOptions.verify) {
|
|
66
|
-
await (0, bundler_1.runLinter)();
|
|
68
|
+
await (0, bundler_1.runLinter)(this.statsigService);
|
|
67
69
|
}
|
|
68
70
|
this.logger.info(cli_shared_1.Text.tunnel.preBundleTask(cli_shared_1.Text.tunnel.bundlingHeader));
|
|
69
71
|
};
|
|
@@ -80,7 +82,7 @@ class TunnelInteractor {
|
|
|
80
82
|
};
|
|
81
83
|
const multiCompiler = new multi_compiler_watcher_1.MultiCompilerWatcher(faasServer, uiServers);
|
|
82
84
|
if (tunnelOptions.verify) {
|
|
83
|
-
await (0, bundler_1.runLinter)();
|
|
85
|
+
await (0, bundler_1.runLinter)(this.statsigService);
|
|
84
86
|
}
|
|
85
87
|
this.logger.info(cli_shared_1.Text.tunnel.preBundleTask(cli_shared_1.Text.tunnel.bundlingHeader));
|
|
86
88
|
try {
|
|
@@ -1,11 +1,9 @@
|
|
|
1
1
|
import { XenInvocationRequest, LimitsTracker, InvocationResult, Sandbox, SandboxConfig, Inspector } from '@forge/runtime';
|
|
2
|
-
import { StatsigService } from '@forge/cli-shared';
|
|
3
2
|
export declare class NodeSandbox implements Sandbox {
|
|
4
|
-
private readonly statsigService;
|
|
5
3
|
readonly name: string;
|
|
6
4
|
private process;
|
|
7
5
|
private readonly callbacks;
|
|
8
|
-
constructor({ appPath, modName, handler, debugPort }: SandboxConfig
|
|
6
|
+
constructor({ appPath, modName, handler, debugPort }: SandboxConfig);
|
|
9
7
|
private handleOutput;
|
|
10
8
|
execute(xenInvocationRequest: XenInvocationRequest, invocationLimits: LimitsTracker, inspector?: Inspector | undefined): Promise<InvocationResult>;
|
|
11
9
|
stop(): void;
|
|
@@ -1 +1 @@
|
|
|
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;
|
|
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;AAMxB,qBAAa,WAAY,YAAW,OAAO;IACzC,SAAgB,IAAI,EAAE,MAAM,CAAC;IAC7B,OAAO,CAAC,OAAO,CAAe;IAC9B,OAAO,CAAC,QAAQ,CAAC,SAAS,CAAkD;gBAEhE,EAAE,OAAO,EAAE,OAAO,EAAE,OAAO,EAAE,SAAS,EAAE,EAAE,aAAa;IAgCnE,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"}
|
|
@@ -10,50 +10,34 @@ const bundler_1 = require("@forge/bundler");
|
|
|
10
10
|
const runtime_1 = require("@forge/runtime");
|
|
11
11
|
const RUNNER = path_1.default.join(__dirname, '..', '..', 'out', 'sandbox', 'sandbox-runner.js');
|
|
12
12
|
class NodeSandbox {
|
|
13
|
-
statsigService;
|
|
14
13
|
name;
|
|
15
14
|
process;
|
|
16
15
|
callbacks;
|
|
17
|
-
constructor({ appPath, modName, handler, debugPort }
|
|
18
|
-
this.statsigService = statsigService;
|
|
16
|
+
constructor({ appPath, modName, handler, debugPort }) {
|
|
19
17
|
const name = `${modName}.${handler}`;
|
|
20
18
|
this.name = name;
|
|
21
19
|
this.callbacks = new Map();
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
},
|
|
44
|
-
execArgv: debugPort ? [`--inspect=0.0.0.0:${debugPort}`] : undefined
|
|
45
|
-
});
|
|
46
|
-
readline_1.default.createInterface(process.stdout).on('line', (line) => {
|
|
47
|
-
const message = JSON.parse(line);
|
|
48
|
-
this.handleOutput(message);
|
|
49
|
-
});
|
|
50
|
-
process.on('message', (message) => {
|
|
51
|
-
const requestId = message.requestId;
|
|
52
|
-
const result = message.result;
|
|
53
|
-
this.callbacks.get(requestId)?.(result);
|
|
54
|
-
});
|
|
55
|
-
return process;
|
|
56
|
-
})();
|
|
20
|
+
const fileName = path_1.default.join(appPath, bundler_1.NODE_RUNTIME_CODE_FILE);
|
|
21
|
+
const handlerName = 'main';
|
|
22
|
+
const handlerEnv = '__forge__.main';
|
|
23
|
+
this.process = (0, child_process_1.fork)(RUNNER, [fileName, handlerName], {
|
|
24
|
+
stdio: ['ignore', 'pipe', 2, 'ipc'],
|
|
25
|
+
env: {
|
|
26
|
+
_HANDLER: handlerEnv,
|
|
27
|
+
FORGE_EFS_RUNTIME_PATH: appPath,
|
|
28
|
+
FORGE_CUSTOM_WRAPPER_FILE_NAME: '__forge_wrapper__.cjs'
|
|
29
|
+
},
|
|
30
|
+
execArgv: debugPort ? [`--inspect=0.0.0.0:${debugPort}`] : undefined
|
|
31
|
+
});
|
|
32
|
+
readline_1.default.createInterface(this.process.stdout).on('line', (line) => {
|
|
33
|
+
const message = JSON.parse(line);
|
|
34
|
+
this.handleOutput(message);
|
|
35
|
+
});
|
|
36
|
+
this.process.on('message', (message) => {
|
|
37
|
+
const requestId = message.requestId;
|
|
38
|
+
const result = message.result;
|
|
39
|
+
this.callbacks.get(requestId)?.(result);
|
|
40
|
+
});
|
|
57
41
|
}
|
|
58
42
|
handleOutput(output) {
|
|
59
43
|
if (output.invocationId) {
|
|
@@ -81,11 +65,11 @@ class NodeSandbox {
|
|
|
81
65
|
deadline
|
|
82
66
|
};
|
|
83
67
|
const message = { lambdaEvent, tunnelContext };
|
|
84
|
-
|
|
68
|
+
this.process.send(message);
|
|
85
69
|
});
|
|
86
70
|
}
|
|
87
71
|
stop() {
|
|
88
|
-
|
|
72
|
+
this.process.kill();
|
|
89
73
|
}
|
|
90
74
|
}
|
|
91
75
|
exports.NodeSandbox = NodeSandbox;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dev-server.d.ts","sourceRoot":"","sources":["../../src/servers/dev-server.ts"],"names":[],"mappings":";;AAAA,OAAO,IAAI,MAAM,MAAM,CAAC;AAExB,OAAO,EAAE,GAAG,EAAE,MAAM,KAAK,CAAC;AAE1B,OAAO,OAAO,MAAM,SAAS,CAAC;AAE9B,OAAO,EAKL,YAAY,EACZ,aAAa,EAEd,MAAM,gBAAgB,CAAC;AACxB,OAAO,EACL,UAAU,EAEV,gBAAgB,EAChB,2BAA2B,EAC3B,MAAM,EAEN,cAAc,EAEd,aAAa,EACd,MAAM,mBAAmB,CAAC;AAC3B,OAAO,EAAE,mBAAmB,EAAe,MAAM,gBAAgB,CAAC;AAClE,OAAO,EAAE,WAAW,EAAE,OAAO,EAAE,MAAM,iBAAiB,CAAC;AAKvD,MAAM,WAAW,gBAAiB,SAAQ,KAAK;IAC7C,IAAI,CAAC,EAAE,MAAM,CAAC;CACf;AAED,MAAM,WAAW,iBAAiB;IAChC,KAAK,CAAC,IAAI,CAAC,EAAE,MAAM,EAAE,WAAW,CAAC,EAAE,WAAW,EAAE,OAAO,CAAC,EAAE,OAAO,GAAG,OAAO,CAAC,oBAAoB,CAAC,CAAC;IAClG,IAAI,IAAI,OAAO,CAAC,IAAI,CAAC,CAAC;IACtB,eAAe,CAAC,KAAK,EAAE,YAAY,EAAE,aAAa,CAAC,EAAE,aAAa,GAAG,OAAO,CAAC,aAAa,CAAC,CAAC;CAC7F;AAED,MAAM,WAAW,oBAAoB;IACnC,IAAI,EAAE,MAAM,CAAC;IACb,SAAS,EAAE,iBAAiB,CAAC;IAC7B,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,SAAS,CAAC,EAAE,GAAG,CAAC;CACjB;AAED,MAAM,WAAW,iBAAiB;IAChC,MAAM,CAAC,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,mBAAmB,GAAG,OAAO,CAAC,GAAG,CAAC,CAAC;CACrE;AAED,wBAAsB,UAAU,CAAC,MAAM,EAAE,IAAI,CAAC,MAAM,GAAG,SAAS,GAAG,OAAO,CAAC,IAAI,CAAC,CAQ/E;AAED,qBAAa,sBAAuB,YAAW,iBAAiB;IAO5D,OAAO,CAAC,QAAQ,CAAC,iBAAiB;IAClC,OAAO,CAAC,QAAQ,CAAC,MAAM;IACvB,OAAO,CAAC,QAAQ,CAAC,UAAU;IAC3B,OAAO,CAAC,QAAQ,CAAC,gBAAgB;IACjC,OAAO,CAAC,QAAQ,CAAC,cAAc;IAC/B,OAAO,CAAC,QAAQ,CAAC,2BAA2B;IAX9C,OAAO,CAAC,GAAG,CAAsB;IACjC,OAAO,CAAC,UAAU,CAA0B;IAC5C,OAAO,CAAC,WAAW,CAA0B;IAC7C,OAAO,CAAC,OAAO,CAAsB;gBAGlB,iBAAiB,EAAE,iBAAiB,EACpC,MAAM,EAAE,MAAM,EACd,UAAU,EAAE,UAAU,EACtB,gBAAgB,EAAE,gBAAgB,EAClC,cAAc,EAAE,cAAc,EAC9B,2BAA2B,EAAE,2BAA2B;
|
|
1
|
+
{"version":3,"file":"dev-server.d.ts","sourceRoot":"","sources":["../../src/servers/dev-server.ts"],"names":[],"mappings":";;AAAA,OAAO,IAAI,MAAM,MAAM,CAAC;AAExB,OAAO,EAAE,GAAG,EAAE,MAAM,KAAK,CAAC;AAE1B,OAAO,OAAO,MAAM,SAAS,CAAC;AAE9B,OAAO,EAKL,YAAY,EACZ,aAAa,EAEd,MAAM,gBAAgB,CAAC;AACxB,OAAO,EACL,UAAU,EAEV,gBAAgB,EAChB,2BAA2B,EAC3B,MAAM,EAEN,cAAc,EAEd,aAAa,EACd,MAAM,mBAAmB,CAAC;AAC3B,OAAO,EAAE,mBAAmB,EAAe,MAAM,gBAAgB,CAAC;AAClE,OAAO,EAAE,WAAW,EAAE,OAAO,EAAE,MAAM,iBAAiB,CAAC;AAKvD,MAAM,WAAW,gBAAiB,SAAQ,KAAK;IAC7C,IAAI,CAAC,EAAE,MAAM,CAAC;CACf;AAED,MAAM,WAAW,iBAAiB;IAChC,KAAK,CAAC,IAAI,CAAC,EAAE,MAAM,EAAE,WAAW,CAAC,EAAE,WAAW,EAAE,OAAO,CAAC,EAAE,OAAO,GAAG,OAAO,CAAC,oBAAoB,CAAC,CAAC;IAClG,IAAI,IAAI,OAAO,CAAC,IAAI,CAAC,CAAC;IACtB,eAAe,CAAC,KAAK,EAAE,YAAY,EAAE,aAAa,CAAC,EAAE,aAAa,GAAG,OAAO,CAAC,aAAa,CAAC,CAAC;CAC7F;AAED,MAAM,WAAW,oBAAoB;IACnC,IAAI,EAAE,MAAM,CAAC;IACb,SAAS,EAAE,iBAAiB,CAAC;IAC7B,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,SAAS,CAAC,EAAE,GAAG,CAAC;CACjB;AAED,MAAM,WAAW,iBAAiB;IAChC,MAAM,CAAC,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,mBAAmB,GAAG,OAAO,CAAC,GAAG,CAAC,CAAC;CACrE;AAED,wBAAsB,UAAU,CAAC,MAAM,EAAE,IAAI,CAAC,MAAM,GAAG,SAAS,GAAG,OAAO,CAAC,IAAI,CAAC,CAQ/E;AAED,qBAAa,sBAAuB,YAAW,iBAAiB;IAO5D,OAAO,CAAC,QAAQ,CAAC,iBAAiB;IAClC,OAAO,CAAC,QAAQ,CAAC,MAAM;IACvB,OAAO,CAAC,QAAQ,CAAC,UAAU;IAC3B,OAAO,CAAC,QAAQ,CAAC,gBAAgB;IACjC,OAAO,CAAC,QAAQ,CAAC,cAAc;IAC/B,OAAO,CAAC,QAAQ,CAAC,2BAA2B;IAX9C,OAAO,CAAC,GAAG,CAAsB;IACjC,OAAO,CAAC,UAAU,CAA0B;IAC5C,OAAO,CAAC,WAAW,CAA0B;IAC7C,OAAO,CAAC,OAAO,CAAsB;gBAGlB,iBAAiB,EAAE,iBAAiB,EACpC,MAAM,EAAE,MAAM,EACd,UAAU,EAAE,UAAU,EACtB,gBAAgB,EAAE,gBAAgB,EAClC,cAAc,EAAE,cAAc,EAC9B,2BAA2B,EAAE,2BAA2B;IAsC9D,KAAK,CAAC,IAAI,SAAI,EAAE,WAAW,CAAC,EAAE,WAAW,EAAE,OAAO,CAAC,EAAE,OAAO,GAAG,OAAO,CAAC,oBAAoB,CAAC;IAe5F,IAAI;IAIJ,eAAe,CAC1B,KAAK,EAAE,YAAY,EACnB,aAAa,GAAE,aAA2C,GACzD,OAAO,CAAC,aAAa,CAAC;IAiClB,MAAM,IAAI,OAAO,CAAC,WAAW;IAI7B,gBAAgB,EAAE,OAAO,CAAC,OAAO,CA6CtC;CACH"}
|
|
@@ -38,8 +38,7 @@ class LocalDevelopmentServer {
|
|
|
38
38
|
this.app = (0, express_1.default)();
|
|
39
39
|
this.app.disable('x-powered-by');
|
|
40
40
|
this.app.disable('etag');
|
|
41
|
-
this.app.
|
|
42
|
-
this.app.post(`/:fnKey`, this.handleInvocation);
|
|
41
|
+
this.app.post(`/:fnKey`, express_1.default.json({ limit: '6mb' }), this.handleInvocation);
|
|
43
42
|
const FORGE_SERVICE_PORT = 7071;
|
|
44
43
|
this.app.use(/^\/forge\/.*\/.*/, (0, http_proxy_middleware_1.createProxyMiddleware)({
|
|
45
44
|
target: `http://localhost:${FORGE_SERVICE_PORT}`,
|
|
@@ -88,7 +87,7 @@ class LocalDevelopmentServer {
|
|
|
88
87
|
return { outputDir: (0, bundler_1.getOutputDir)({ watchMode }) };
|
|
89
88
|
}
|
|
90
89
|
const bundler = isNodeJsRuntime
|
|
91
|
-
? (0, bundler_1.getNodeBundler)(this.logger, (0, bundler_1.getWrapperProvider)({ fileSystemReader: this.fileSystemReader, statsigService: this.statsigService }), this.configFile
|
|
90
|
+
? (0, bundler_1.getNodeBundler)(this.logger, (0, bundler_1.getWrapperProvider)({ fileSystemReader: this.fileSystemReader, statsigService: this.statsigService }), this.configFile)
|
|
92
91
|
: new bundler_1.SandboxBundler(this.logger);
|
|
93
92
|
const { translations, modules } = await this.configFile.readConfig();
|
|
94
93
|
const i18nResourceBundle = await this.i18nResourceBundlingService.bundle(modules, translations);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@forge/tunnel",
|
|
3
|
-
"version": "5.11.1-next.
|
|
3
|
+
"version": "5.11.1-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": "5.0.1-next.
|
|
15
|
-
"@forge/cli-shared": "7.1.0-next.
|
|
14
|
+
"@forge/bundler": "5.0.1-next.5",
|
|
15
|
+
"@forge/cli-shared": "7.1.0-next.5",
|
|
16
16
|
"@forge/csp": "3.9.0",
|
|
17
17
|
"@forge/runtime": "5.10.8",
|
|
18
18
|
"cloudflared": "^0.7.0",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"@atlassian/xen-test-util": "^4.2.0",
|
|
33
|
-
"@forge/manifest": "9.5.0-next.
|
|
33
|
+
"@forge/manifest": "9.5.0-next.4",
|
|
34
34
|
"@types/express": "^4.17.21",
|
|
35
35
|
"@types/jest": "^29.5.12",
|
|
36
36
|
"@types/node": "14.18.63",
|