Skip to content

Commit

Permalink
attempt to fix with mkdirp
Browse files Browse the repository at this point in the history
  • Loading branch information
holic committed Aug 28, 2024
1 parent 18e88c1 commit c62abc5
Show file tree
Hide file tree
Showing 5 changed files with 945 additions and 535 deletions.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,10 @@
"glob": "^10.4.2",
"husky": ">=6",
"lint-staged": ">=10",
"mkdirp": "^3.0.1",
"prettier": "3.2.5",
"prettier-plugin-solidity": "1.3.1",
"rimraf": "^3.0.2",
"rimraf": "^6.0.1",
"tsx": "4.16.2",
"turbo": "^1.9.3",
"typescript": "5.4.2"
Expand Down
2 changes: 1 addition & 1 deletion packages/abi-ts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"build": "tsup",
"clean": "rimraf dist",
"dev": "tsup --watch",
"prepare": "mkdir -p ./dist && touch ./dist/abi-ts.js",
"prepare": "mkdirp ./dist && touch ./dist/abi-ts.js",
"test": "vitest typecheck --run --passWithNoTests && vitest --run --passWithNoTests",
"test:ci": "pnpm run test"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"clean:test-tables": "rimraf src/codegen",
"dev": "tsup --watch",
"lint": "eslint . --ext .ts",
"prepare": "mkdir -p ./dist && touch ./dist/mud.js",
"prepare": "mkdirp ./dist && touch ./dist/mud.js",
"test": "tsc --noEmit && forge test",
"test:ci": "pnpm run test"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/gas-report/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"build": "tsup",
"clean": "rimraf dist",
"dev": "tsup --watch",
"prepare": "mkdir -p ./dist && touch ./dist/gas-report.js",
"prepare": "mkdirp ./dist && touch ./dist/gas-report.js",
"test": "vitest typecheck --run --passWithNoTests && vitest --run --passWithNoTests && forge test",
"test:ci": "pnpm run test"
},
Expand Down
Loading

0 comments on commit c62abc5

Please sign in to comment.