@nu-art/build-and-install 0.204.141 → 0.204.143
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/core/params/params.js
CHANGED
|
@@ -304,8 +304,8 @@ exports.AllBaiParams = [
|
|
|
304
304
|
exports.BaiParam_Install,
|
|
305
305
|
exports.BaiParam_InstallPackages,
|
|
306
306
|
exports.BaiParam_InstallGlobals,
|
|
307
|
-
exports.BaiParam_Generate,
|
|
308
|
-
exports.BaiParam_GenerateDocs,
|
|
307
|
+
exports.BaiParam_Generate, // TODO: to implement
|
|
308
|
+
exports.BaiParam_GenerateDocs, // TODO: to implement
|
|
309
309
|
exports.BaiParam_NoBuild,
|
|
310
310
|
exports.BaiParam_DryRun,
|
|
311
311
|
exports.BaiParam_RunWithThunderstorm,
|
|
@@ -313,18 +313,18 @@ exports.AllBaiParams = [
|
|
|
313
313
|
exports.BaiParam_NoThunderstorm,
|
|
314
314
|
exports.BaiParam_Lint,
|
|
315
315
|
exports.BaiParam_Watch,
|
|
316
|
-
exports.BaiParam_Test,
|
|
316
|
+
exports.BaiParam_Test, // TODO: to implement
|
|
317
317
|
exports.BaiParam_Launch,
|
|
318
|
-
exports.BaiParam_LaunchFrontend,
|
|
319
|
-
exports.BaiParam_LaunchBackend,
|
|
318
|
+
exports.BaiParam_LaunchFrontend, // TODO: to implement
|
|
319
|
+
exports.BaiParam_LaunchBackend, // TODO: to implement
|
|
320
320
|
exports.BaiParam_DebugBackend,
|
|
321
321
|
exports.BaiParam_Deploy,
|
|
322
322
|
exports.BaiParam_DeployBackend,
|
|
323
323
|
exports.BaiParam_DeployFrontend,
|
|
324
|
-
exports.BaiParam_NoGit,
|
|
324
|
+
exports.BaiParam_NoGit, // TODO: to implement
|
|
325
325
|
exports.BaiParam_Debug,
|
|
326
326
|
exports.BaiParam_Verbose,
|
|
327
|
-
exports.BaiParam_Publish,
|
|
327
|
+
exports.BaiParam_Publish, // TODO: to implement
|
|
328
328
|
exports.BaiParam_AllLogs,
|
|
329
329
|
exports.BaiParam_CloseScreenOnExit,
|
|
330
330
|
exports.BaiParam_EncounterManager,
|
package/package.json
CHANGED
package/v2/screens/BAIScreen.js
CHANGED
|
@@ -19,13 +19,13 @@ class BAIScreen extends ConsoleScreen_1.ConsoleScreen {
|
|
|
19
19
|
callback: async () => await this.onKill(),
|
|
20
20
|
},
|
|
21
21
|
{
|
|
22
|
-
keys: ['up'],
|
|
22
|
+
keys: ['up'], // Scroll up on Control-U
|
|
23
23
|
callback: () => {
|
|
24
24
|
this.scrollLog(-1);
|
|
25
25
|
},
|
|
26
26
|
},
|
|
27
27
|
{
|
|
28
|
-
keys: ['down'],
|
|
28
|
+
keys: ['down'], // Scroll down on Control-D
|
|
29
29
|
callback: () => {
|
|
30
30
|
this.scrollLog(1);
|
|
31
31
|
},
|
|
@@ -305,5 +305,5 @@ class Unit_FirebaseFunctionsApp extends core_1.Unit_TypescriptLib {
|
|
|
305
305
|
return this.executeAsyncCommando(commando);
|
|
306
306
|
}
|
|
307
307
|
}
|
|
308
|
-
Unit_FirebaseFunctionsApp.staggerCount = 0;
|
|
309
308
|
exports.Unit_FirebaseFunctionsApp = Unit_FirebaseFunctionsApp;
|
|
309
|
+
Unit_FirebaseFunctionsApp.staggerCount = 0;
|
package/v2/unit/tools/tools.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.convertPackageJSONTemplateToPackJSON_Value =
|
|
3
|
+
exports.convertPackageJSONTemplateToPackJSON_Value = convertPackageJSONTemplateToPackJSON_Value;
|
|
4
4
|
const ts_common_1 = require("@nu-art/ts-common");
|
|
5
5
|
function convertPackageJSONTemplateToPackJSON_Value(template, value) {
|
|
6
6
|
let workspacePackageJsonAsString = (0, ts_common_1.__stringify)(template, true);
|
|
@@ -13,4 +13,3 @@ function convertPackageJSONTemplateToPackJSON_Value(template, value) {
|
|
|
13
13
|
const packageJson = JSON.parse(workspacePackageJsonAsString);
|
|
14
14
|
return packageJson;
|
|
15
15
|
}
|
|
16
|
-
exports.convertPackageJSONTemplateToPackJSON_Value = convertPackageJSONTemplateToPackJSON_Value;
|