@nsshunt/stsvueutils 1.0.86 → 1.0.88
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/stsvueutils.mjs
CHANGED
|
@@ -3017,7 +3017,7 @@ const chalk$2 = Chalk$1();
|
|
|
3017
3017
|
chalk$2.supportsColor = stdoutColor$1;
|
|
3018
3018
|
chalk$2.stderr = Chalk$1({ level: stderrColor$1 ? stderrColor$1.level : 0 });
|
|
3019
3019
|
chalk$2.stderr.supportsColor = stderrColor$1;
|
|
3020
|
-
const STSInstrumentControllerPluginKey = Symbol();
|
|
3020
|
+
const STSInstrumentControllerPluginKey = Symbol("instrumentController");
|
|
3021
3021
|
const GetSTSInstrumentControllerPluginKey = () => STSInstrumentControllerPluginKey;
|
|
3022
3022
|
const GetSTSInstrumentController = (app) => {
|
|
3023
3023
|
return app.config.globalProperties.$sts[STSInstrumentControllerPluginKey];
|
|
@@ -5627,7 +5627,9 @@ class STSWorkerManager {
|
|
|
5627
5627
|
console.log(chalk$1.yellow(`CompareSTSInstrumentControllerPluginKeyWMEx(): [${CompareSTSInstrumentControllerPluginKeyWMEx()}]`));
|
|
5628
5628
|
console.log(chalk$1.yellow(`Attempting to get STSInstrumentControllerPlugin using symbol: [${String(STSInstrumentControllerPluginKey)}]`));
|
|
5629
5629
|
__privateSet(this, _STSInstrumentController, GetSTSInstrumentController(app));
|
|
5630
|
+
console.log(chalk$1.yellow(app.config.globalProperties.$sts[STSInstrumentControllerPluginKey]));
|
|
5630
5631
|
console.log(chalk$1.yellow(__privateGet(this, _STSInstrumentController)));
|
|
5632
|
+
console.log(chalk$1.yellow(app.config.globalProperties.$sts.aic));
|
|
5631
5633
|
console.log(chalk$1.yellow("keys within app.config.globalProperties.$sts"));
|
|
5632
5634
|
for (const [key] of Object.entries(app.config.globalProperties.$sts)) {
|
|
5633
5635
|
console.log(chalk$1.yellow(`${key}`));
|