taon 21.0.71 → 21.0.73
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/bin/start.js +20 -1
- package/browser/package.json +1 -1
- package/browser-prod/package.json +1 -1
- package/lib/build-info._auto-generated_.d.ts +1 -1
- package/lib/build-info._auto-generated_.js +1 -1
- package/lib/package.json +1 -1
- package/lib/ui/index.js +2 -2
- package/lib/ui/taon-admin-mode-configuration/index.js +2 -2
- package/lib-prod/build-info._auto-generated_.d.ts +1 -1
- package/lib-prod/build-info._auto-generated_.js +1 -1
- package/lib-prod/package.json +1 -1
- package/lib-prod/ui/index.d.ts +1 -1
- package/lib-prod/ui/index.js +1 -1
- package/lib-prod/ui/taon-admin-mode-configuration/index.d.ts +1 -1
- package/lib-prod/ui/taon-admin-mode-configuration/index.js +1 -1
- package/package.json +1 -1
- package/websql/package.json +1 -1
- package/websql-prod/package.json +1 -1
package/bin/start.js
CHANGED
|
@@ -5,6 +5,25 @@ global.i0 = {
|
|
|
5
5
|
const process= require('process');
|
|
6
6
|
process.removeAllListeners('warning');
|
|
7
7
|
|
|
8
|
+
var argv = process.argv;
|
|
9
|
+
|
|
10
|
+
global.hideLog = true;
|
|
11
|
+
global.verboseLevel = 0;
|
|
12
|
+
var verboseLevel = argv.find(a => a.startsWith('-verbose='));
|
|
13
|
+
if (typeof verboseLevel !== 'undefined') {
|
|
14
|
+
global.hideLog = false;
|
|
15
|
+
verboseLevel = Number(verboseLevel.replace('-verbose=', ''));
|
|
16
|
+
if (!isNaN(verboseLevel)) {
|
|
17
|
+
global.verboseLevel = verboseLevel;
|
|
18
|
+
}
|
|
19
|
+
argv = argv.filter(a => !a.startsWith('-verbose='));
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
if (argv.includes('-verbose')) {
|
|
23
|
+
global.hideLog = false;
|
|
24
|
+
argv = argv.filter(a => a !== '-verbose');
|
|
25
|
+
}
|
|
26
|
+
|
|
8
27
|
const fs = require('fs');
|
|
9
28
|
const path = require('path');
|
|
10
29
|
var pathToCliJS = {
|
|
@@ -14,4 +33,4 @@ var pathToCliJS = {
|
|
|
14
33
|
var p = fs.existsSync(pathToCliJS.distDev) ? pathToCliJS.distDev : pathToCliJS.localOrNPm;
|
|
15
34
|
global.globalSystemToolMode = true;
|
|
16
35
|
var run = require(p).start;
|
|
17
|
-
run(
|
|
36
|
+
run(argv,__filename);
|
package/browser/package.json
CHANGED
|
@@ -25,6 +25,6 @@ exports.CURRENT_PACKAGE_TAON_VERSION = 'v21';
|
|
|
25
25
|
/**
|
|
26
26
|
* Autogenerated by current cli tool. Use *tnp release* to bump version.
|
|
27
27
|
*/
|
|
28
|
-
exports.CURRENT_PACKAGE_VERSION = '21.0.
|
|
28
|
+
exports.CURRENT_PACKAGE_VERSION = '21.0.73';
|
|
29
29
|
// THIS FILE IS GENERATED - DO NOT MODIFY
|
|
30
30
|
//# sourceMappingURL=build-info._auto-generated_.js.map
|
package/lib/package.json
CHANGED
package/lib/ui/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
function
|
|
3
|
+
exports.dummy1772333909562 = dummy1772333909562;
|
|
4
|
+
function dummy1772333909562() { }
|
|
5
5
|
//# sourceMappingURL=index.js.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
function
|
|
3
|
+
exports.dummy1772333910085 = dummy1772333910085;
|
|
4
|
+
function dummy1772333910085() { }
|
|
5
5
|
//# sourceMappingURL=index.js.map
|
|
@@ -22,6 +22,6 @@ export const CURRENT_PACKAGE_TAON_VERSION = 'v21';
|
|
|
22
22
|
/**
|
|
23
23
|
* Autogenerated by current cli tool. Use *tnp release* to bump version.
|
|
24
24
|
*/
|
|
25
|
-
export const CURRENT_PACKAGE_VERSION = '21.0.
|
|
25
|
+
export const CURRENT_PACKAGE_VERSION = '21.0.73';
|
|
26
26
|
// THIS FILE IS GENERATED - DO NOT MODIFY
|
|
27
27
|
//# sourceMappingURL=build-info._auto-generated_.js.map
|
package/lib-prod/package.json
CHANGED
package/lib-prod/ui/index.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare function
|
|
1
|
+
export declare function dummy1772333946579(): void;
|
package/lib-prod/ui/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export function
|
|
1
|
+
export function dummy1772333946579() { }
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare function
|
|
1
|
+
export declare function dummy1772333947147(): void;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export function
|
|
1
|
+
export function dummy1772333947147() { }
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
package/package.json
CHANGED
package/websql/package.json
CHANGED