@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.
@@ -32,7 +32,6 @@ jobs:
32
32
  uses: pnpm/action-setup@v2
33
33
  id: pnpm-install
34
34
  with:
35
- version: latest
36
35
  run_install: false
37
36
 
38
37
  - name: Get pnpm store directory
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: { repos }
33489
+ data: { nanos }
33490
33490
  } = await axios.get(
33491
- "https://nanos-release-tool-staging.neetodeployapp.com/api/v1/repos"
33491
+ "https://ops.neetotower.com/api/v1/public/nanos"
33492
33492
  );
33493
33493
 
33494
33494
  const trackedPackages = filterBy(
33495
33495
  { name: includes(__, auditPackages) },
33496
- repos
33496
+ nanos
33497
33497
  );
33498
33498
 
33499
33499
  trackedPackages.forEach(({ name, current_version }) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bigbinary/neeto-audit-frontend",
3
- "version": "2.0.10",
3
+ "version": "2.0.11",
4
4
  "description": "Audits neeto frontend codebase for issues and suggests a fix.",
5
5
  "type": "module",
6
6
  "bin": "./dist/index.js",
@@ -30,14 +30,14 @@ const updateBigbinaryPackages = async (recommendedList) => {
30
30
  while (!success && retries < MAX_RETRIES) {
31
31
  try {
32
32
  const {
33
- data: { repos }
33
+ data: { nanos }
34
34
  } = await axios.get(
35
- "https://nanos-release-tool-staging.neetodeployapp.com/api/v1/repos"
35
+ "https://ops.neetotower.com/api/v1/public/nanos"
36
36
  );
37
37
 
38
38
  const trackedPackages = filterBy(
39
39
  { name: includes(__, auditPackages) },
40
- repos
40
+ nanos
41
41
  );
42
42
 
43
43
  trackedPackages.forEach(({ name, current_version }) => {