@bigbinary/neeto-audit-frontend 2.0.13 → 2.0.15

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bigbinary/neeto-audit-frontend",
3
- "version": "2.0.13",
3
+ "version": "2.0.15",
4
4
  "description": "Audits neeto frontend codebase for issues and suggests a fix.",
5
5
  "type": "module",
6
6
  "bin": "./dist/index.js",
@@ -28,7 +28,7 @@
28
28
  "dependencies": {
29
29
  "@bigbinary/neeto-cist": "1.0.8",
30
30
  "@bigbinary/neeto-commons-frontend": "3.1.10",
31
- "axios": "1.6.0",
31
+ "axios": "1.7.4",
32
32
  "chalk": "5.3.0",
33
33
  "commander": "11.1.0",
34
34
  "ora": "8.0.1",
@@ -14,7 +14,7 @@ const eslint = async (debug) => {
14
14
 
15
15
  // neeto-molecules has different ESLint rules disabled. This does not match other frontend packages.
16
16
  // So, decided to skip this check instead of adding a different config check just for a single repo.
17
- if (repoName === "neeto-molecules") {
17
+ if (repoName === "neeto-molecules" || repoName === "neeto-commons-frontend") {
18
18
  return { isSuccess: true, status: STATUSES.SKIPPED };
19
19
  }
20
20
 
@@ -14,7 +14,7 @@ const prettier = async (debug) => {
14
14
 
15
15
  // neeto-molecules uses custom tailwind plugins for styles. This does not match other frontend packages.
16
16
  // So, decided to skip this check instead of adding a different config check just for a single repo.
17
- if (repoName === "neeto-molecules") {
17
+ if (repoName === "neeto-molecules" || repoName === "neeto-commons-frontend") {
18
18
  return { isSuccess: true, status: STATUSES.SKIPPED };
19
19
  }
20
20