@coana-tech/cli 14.12.152 → 14.12.153
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/cli.mjs +1 -1
- package/package.json +1 -1
- package/repos/coana-tech/goana/bin/goana-darwin-amd64.gz +0 -0
- package/repos/coana-tech/goana/bin/goana-darwin-arm64.gz +0 -0
- package/repos/coana-tech/goana/bin/goana-linux-amd64.gz +0 -0
- package/repos/coana-tech/goana/bin/goana-linux-arm64.gz +0 -0
- package/repos/coana-tech/javap-service/javap-service.jar +0 -0
- package/repos/coana-tech/jelly-private/dist/bundle/jelly.js +9 -0
package/cli.mjs
CHANGED
|
@@ -250895,7 +250895,7 @@ async function onlineScan(dependencyTree, apiKey, timeout) {
|
|
|
250895
250895
|
}
|
|
250896
250896
|
|
|
250897
250897
|
// dist/version.js
|
|
250898
|
-
var version3 = "14.12.
|
|
250898
|
+
var version3 = "14.12.153";
|
|
250899
250899
|
|
|
250900
250900
|
// dist/cli-core.js
|
|
250901
250901
|
var { mapValues, omit, partition, pickBy: pickBy2 } = import_lodash15.default;
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -108,6 +108,10 @@ var require_worklist = __commonJS({
|
|
|
108
108
|
}
|
|
109
109
|
first;
|
|
110
110
|
last;
|
|
111
|
+
_size = 0;
|
|
112
|
+
get size() {
|
|
113
|
+
return this._size;
|
|
114
|
+
}
|
|
111
115
|
enqueue(v) {
|
|
112
116
|
const n = new Node(v);
|
|
113
117
|
if (this.last)
|
|
@@ -115,6 +119,7 @@ var require_worklist = __commonJS({
|
|
|
115
119
|
else
|
|
116
120
|
this.first = n;
|
|
117
121
|
this.last = n;
|
|
122
|
+
this._size++;
|
|
118
123
|
}
|
|
119
124
|
*[Symbol.iterator]() {
|
|
120
125
|
while (this.first) {
|
|
@@ -122,6 +127,7 @@ var require_worklist = __commonJS({
|
|
|
122
127
|
this.first = c.next;
|
|
123
128
|
if (this.first === void 0)
|
|
124
129
|
this.last = void 0;
|
|
130
|
+
this._size--;
|
|
125
131
|
yield c.value;
|
|
126
132
|
}
|
|
127
133
|
}
|
|
@@ -2639,6 +2645,9 @@ var require_solver = __commonJS({
|
|
|
2639
2645
|
unprocessedListeners2: f.postponedListenerCalls2.length,
|
|
2640
2646
|
packages: a.packageInfos.size,
|
|
2641
2647
|
modules: a.moduleInfos.size,
|
|
2648
|
+
modulesFull: d.modulesFull,
|
|
2649
|
+
pendingFiles: a.pendingFiles.size,
|
|
2650
|
+
pendingModulesFull: a.pendingModulesFull.size,
|
|
2642
2651
|
functions: a.functionInfos.size,
|
|
2643
2652
|
uniqueTokens: a.canonicalTokens.size
|
|
2644
2653
|
});
|