@bitblit/ratchet-epsilon-common 4.0.85-alpha → 4.0.86-alpha
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/dist/cjs/build/ratchet-epsilon-common-info.js +5 -5
- package/dist/cjs/cli-bootstrap/epsilon-run-background-process-from-command-line-dry-run.js +1 -0
- package/dist/cjs/local-container-server.js +1 -1
- package/dist/cjs/test-error-server.js +1 -0
- package/dist/es/build/ratchet-epsilon-common-info.js +5 -5
- package/dist/es/cli-bootstrap/epsilon-run-background-process-from-command-line-dry-run.js +1 -0
- package/dist/es/local-container-server.js +1 -1
- package/dist/es/test-error-server.js +1 -0
- package/dist/tsconfig.cjs.tsbuildinfo +1 -1
- package/dist/tsconfig.es.tsbuildinfo +1 -1
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -5,11 +5,11 @@ class RatchetEpsilonCommonInfo {
|
|
|
5
5
|
constructor() { }
|
|
6
6
|
static buildInformation() {
|
|
7
7
|
const val = {
|
|
8
|
-
version: '
|
|
9
|
-
hash: '
|
|
10
|
-
branch: 'alpha-2023-03-14-
|
|
11
|
-
tag: 'alpha-2023-03-14-
|
|
12
|
-
timeBuiltISO: '2023-03-
|
|
8
|
+
version: '86',
|
|
9
|
+
hash: 'fd0349c8aef3e94a30fbca29822a498a8d32fef9',
|
|
10
|
+
branch: 'alpha-2023-03-14-2',
|
|
11
|
+
tag: 'alpha-2023-03-14-2',
|
|
12
|
+
timeBuiltISO: '2023-03-14T22:01:48-0700',
|
|
13
13
|
notes: '',
|
|
14
14
|
};
|
|
15
15
|
return val;
|
|
@@ -10,6 +10,7 @@ if (((_a = process === null || process === void 0 ? void 0 : process.argv) === n
|
|
|
10
10
|
'epsilon-run-background-process-from-command-line-dry-run.js',
|
|
11
11
|
'epsilon-run-background-process-from-command-line-dry-run',
|
|
12
12
|
])) {
|
|
13
|
+
ratchet_common_1.Logger.info('RunBackgroundProcessFromCommandLine requested (cli is %s) - starting', process === null || process === void 0 ? void 0 : process.argv);
|
|
13
14
|
run_background_process_from_command_line_1.RunBackgroundProcessFromCommandLine.processBackgroundCliRequest(null, true)
|
|
14
15
|
.then((out) => {
|
|
15
16
|
ratchet_common_1.Logger.info('Result : %s', out);
|
|
@@ -64,7 +64,7 @@ class LocalContainerServer {
|
|
|
64
64
|
exports.LocalContainerServer = LocalContainerServer;
|
|
65
65
|
if (ratchet_node_only_1.CliRatchet.isCalledFromCLISingle('local-container-server')) {
|
|
66
66
|
ratchet_common_1.Logger.setLevel(ratchet_common_1.LoggerLevelName.debug);
|
|
67
|
-
ratchet_common_1.Logger.debug('Running local container server');
|
|
67
|
+
ratchet_common_1.Logger.debug('Running local container server : %j', process === null || process === void 0 ? void 0 : process.argv);
|
|
68
68
|
const testServer = new LocalContainerServer();
|
|
69
69
|
testServer
|
|
70
70
|
.runServer()
|
|
@@ -40,6 +40,7 @@ class TestErrorServer {
|
|
|
40
40
|
}
|
|
41
41
|
exports.TestErrorServer = TestErrorServer;
|
|
42
42
|
if (ratchet_node_only_1.CliRatchet.isCalledFromCLISingle('test-error-server')) {
|
|
43
|
+
ratchet_common_1.Logger.info('test-error-server requested (cli is %s) - starting', process === null || process === void 0 ? void 0 : process.argv);
|
|
43
44
|
const testServer = new TestErrorServer();
|
|
44
45
|
testServer.runServer().then((res) => {
|
|
45
46
|
ratchet_common_1.Logger.info('Got res server');
|
|
@@ -2,11 +2,11 @@ export class RatchetEpsilonCommonInfo {
|
|
|
2
2
|
constructor() { }
|
|
3
3
|
static buildInformation() {
|
|
4
4
|
const val = {
|
|
5
|
-
version: '
|
|
6
|
-
hash: '
|
|
7
|
-
branch: 'alpha-2023-03-14-
|
|
8
|
-
tag: 'alpha-2023-03-14-
|
|
9
|
-
timeBuiltISO: '2023-03-
|
|
5
|
+
version: '86',
|
|
6
|
+
hash: 'fd0349c8aef3e94a30fbca29822a498a8d32fef9',
|
|
7
|
+
branch: 'alpha-2023-03-14-2',
|
|
8
|
+
tag: 'alpha-2023-03-14-2',
|
|
9
|
+
timeBuiltISO: '2023-03-14T22:01:48-0700',
|
|
10
10
|
notes: '',
|
|
11
11
|
};
|
|
12
12
|
return val;
|
|
@@ -7,6 +7,7 @@ if (process?.argv?.length &&
|
|
|
7
7
|
'epsilon-run-background-process-from-command-line-dry-run.js',
|
|
8
8
|
'epsilon-run-background-process-from-command-line-dry-run',
|
|
9
9
|
])) {
|
|
10
|
+
Logger.info('RunBackgroundProcessFromCommandLine requested (cli is %s) - starting', process?.argv);
|
|
10
11
|
RunBackgroundProcessFromCommandLine.processBackgroundCliRequest(null, true)
|
|
11
12
|
.then((out) => {
|
|
12
13
|
Logger.info('Result : %s', out);
|
|
@@ -59,7 +59,7 @@ export class LocalContainerServer {
|
|
|
59
59
|
}
|
|
60
60
|
if (CliRatchet.isCalledFromCLISingle('local-container-server')) {
|
|
61
61
|
Logger.setLevel(LoggerLevelName.debug);
|
|
62
|
-
Logger.debug('Running local container server');
|
|
62
|
+
Logger.debug('Running local container server : %j', process?.argv);
|
|
63
63
|
const testServer = new LocalContainerServer();
|
|
64
64
|
testServer
|
|
65
65
|
.runServer()
|
|
@@ -35,6 +35,7 @@ export class TestErrorServer {
|
|
|
35
35
|
}
|
|
36
36
|
}
|
|
37
37
|
if (CliRatchet.isCalledFromCLISingle('test-error-server')) {
|
|
38
|
+
Logger.info('test-error-server requested (cli is %s) - starting', process?.argv);
|
|
38
39
|
const testServer = new TestErrorServer();
|
|
39
40
|
testServer.runServer().then((res) => {
|
|
40
41
|
Logger.info('Got res server');
|