@bigbinary/neeto-audit-frontend 2.0.10 → 2.0.11
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/index.js
CHANGED
|
@@ -33486,14 +33486,14 @@ const updateBigbinaryPackages = async (recommendedList) => {
|
|
|
33486
33486
|
while (retries < MAX_RETRIES) {
|
|
33487
33487
|
try {
|
|
33488
33488
|
const {
|
|
33489
|
-
data: {
|
|
33489
|
+
data: { nanos }
|
|
33490
33490
|
} = await axios.get(
|
|
33491
|
-
"https://
|
|
33491
|
+
"https://ops.neetotower.com/api/v1/public/nanos"
|
|
33492
33492
|
);
|
|
33493
33493
|
|
|
33494
33494
|
const trackedPackages = filterBy(
|
|
33495
33495
|
{ name: includes(__, auditPackages) },
|
|
33496
|
-
|
|
33496
|
+
nanos
|
|
33497
33497
|
);
|
|
33498
33498
|
|
|
33499
33499
|
trackedPackages.forEach(({ name, current_version }) => {
|
package/package.json
CHANGED
|
@@ -30,14 +30,14 @@ const updateBigbinaryPackages = async (recommendedList) => {
|
|
|
30
30
|
while (!success && retries < MAX_RETRIES) {
|
|
31
31
|
try {
|
|
32
32
|
const {
|
|
33
|
-
data: {
|
|
33
|
+
data: { nanos }
|
|
34
34
|
} = await axios.get(
|
|
35
|
-
"https://
|
|
35
|
+
"https://ops.neetotower.com/api/v1/public/nanos"
|
|
36
36
|
);
|
|
37
37
|
|
|
38
38
|
const trackedPackages = filterBy(
|
|
39
39
|
{ name: includes(__, auditPackages) },
|
|
40
|
-
|
|
40
|
+
nanos
|
|
41
41
|
);
|
|
42
42
|
|
|
43
43
|
trackedPackages.forEach(({ name, current_version }) => {
|