Skip to content

Commit

Permalink
Add reusable cleanup script for __pycache__
Browse files Browse the repository at this point in the history
  • Loading branch information
Melle committed Jan 22, 2024
1 parent 0cfad36 commit 678fde4
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,12 @@
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "rm -rf dags/__pycache__ src/__pycache__ && jest",
"test:update": "rm -rf dags/__pycache__ src/__pycache__ && jest -u",
"cdk": "cdk",
"test": "npm run cleanup && jest",
"test:update": "npm run cleanup && jest -u",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix"
"lint:fix": "eslint . --ext .ts --fix",
"cleanup": "rm -rf dags/__pycache__ src/__pycache__"
},
"devDependencies": {
"@types/jest": "^29.5.11",
Expand Down

0 comments on commit 678fde4

Please sign in to comment.