Skip to content

Commit b9402ec

Browse files
authored
Merge pull request #1189 from CodeForAfrica/chore-ui_clean
[QuickFix] Fix `clean` script
2 parents a5f7126 + 841e7a9 commit b9402ec

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

apps/codeforafrica/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"lint": "TIMING=1 eslint --flag unstable_config_lookup_from_file --fix './'",
3131
"jest": "jest",
3232
"playwright": "npx playwright test",
33-
"clean": "rm -rf .next .turbo node_modules"
33+
"clean": "rm -rf .next .turbo build dist node_modules"
3434
},
3535
"dependencies": {
3636
"@aws-sdk/client-s3": "catalog:",

apps/roboshield/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"payload-migrate:down": "payload migrate:down",
1111
"start": "next start",
1212
"dev": "NODE_OPTIONS='--inspect' next dev",
13-
"clean": "rm -rf .next .turbo node_modules",
13+
"clean": "rm -rf .next .turbo build dist node_modules",
1414
"jest": "jest --passWithNoTests",
1515
"lint-check": "TIMING=1 next lint './'",
1616
"lint": "TIMING=1 next lint --fix './'",

apps/trustlab/src/components/MobileNavBar/MobileNavBar.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import React, { useState } from "react";
55

66
// eslint-disable-next-line import/no-unresolved
77
import XIcon from "@/trustlab/assets/icons/Type=x, Size=24, Color=currentColor.svg?url";
8-
// eslint-disable-next-line import/no-unresolved
98
import MenuIcon from "@/trustlab/assets/menu-icon.svg?url";
109

1110
const MobileNavBar = React.forwardRef(function MobileNavBar(props, ref) {

0 commit comments

Comments
 (0)