@bitblit/ratchet-epsilon-common 4.0.87-alpha → 4.0.89-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/run-background-process-from-command-line.js +2 -2
- package/dist/es/build/ratchet-epsilon-common-info.js +5 -5
- package/dist/es/cli-bootstrap/run-background-process-from-command-line.js +1 -1
- 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-
|
|
11
|
-
tag: 'alpha-2023-03-
|
|
12
|
-
timeBuiltISO: '2023-03-
|
|
8
|
+
version: '89',
|
|
9
|
+
hash: '1458f175b084b58fabefc52f2a8203c4ed38161d',
|
|
10
|
+
branch: 'alpha-2023-03-19-2',
|
|
11
|
+
tag: 'alpha-2023-03-19-2',
|
|
12
|
+
timeBuiltISO: '2023-03-20T00:02:38-0700',
|
|
13
13
|
notes: '',
|
|
14
14
|
};
|
|
15
15
|
return val;
|
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.RunBackgroundProcessFromCommandLine = void 0;
|
|
4
4
|
const ratchet_common_1 = require("@bitblit/ratchet-common");
|
|
5
|
-
const
|
|
5
|
+
const ratchet_common_2 = require("@bitblit/ratchet-common");
|
|
6
6
|
class RunBackgroundProcessFromCommandLine {
|
|
7
7
|
static async runFromCliArgs(args) {
|
|
8
8
|
if (args.length > 1) {
|
|
9
9
|
const procName = args[0];
|
|
10
|
-
const dryRun = args.length > 1 &&
|
|
10
|
+
const dryRun = args.length > 1 && ratchet_common_2.BooleanRatchet.parseBool(args[1]);
|
|
11
11
|
const data = args.length > 2 ? JSON.parse(args[2]) : null;
|
|
12
12
|
const meta = args.length > 3 ? JSON.parse(args[3]) : null;
|
|
13
13
|
const epsilon = null;
|
|
@@ -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-
|
|
8
|
-
tag: 'alpha-2023-03-
|
|
9
|
-
timeBuiltISO: '2023-03-
|
|
5
|
+
version: '89',
|
|
6
|
+
hash: '1458f175b084b58fabefc52f2a8203c4ed38161d',
|
|
7
|
+
branch: 'alpha-2023-03-19-2',
|
|
8
|
+
tag: 'alpha-2023-03-19-2',
|
|
9
|
+
timeBuiltISO: '2023-03-20T00:02:38-0700',
|
|
10
10
|
notes: '',
|
|
11
11
|
};
|
|
12
12
|
return val;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Logger } from '@bitblit/ratchet-common';
|
|
2
|
-
import { BooleanRatchet } from '@bitblit/ratchet-common
|
|
2
|
+
import { BooleanRatchet } from '@bitblit/ratchet-common';
|
|
3
3
|
export class RunBackgroundProcessFromCommandLine {
|
|
4
4
|
static async runFromCliArgs(args) {
|
|
5
5
|
if (args.length > 1) {
|