Skip to content
This repository has been archived by the owner on Mar 25, 2024. It is now read-only.

Commit

Permalink
Revert "chore: package.json commands alphabetical order"
Browse files Browse the repository at this point in the history
This reverts commit e39a52c.
  • Loading branch information
benceharomi committed Nov 2, 2023
1 parent 41f51f9 commit 6e9bf3f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,14 +54,14 @@
]
},
"scripts": {
"build": "yarn build:sol && yarn build:yul",
"build:sol": "hardhat compile",
"build:yul": "yarn preprocess:yul && yarn compile-yul",
"build": "yarn build:sol && yarn build:yul",
"calculate-hashes:check": "ts-node scripts/calculate-hashes.ts --check-only",
"calculate-hashes:fix": "ts-node scripts/calculate-hashes.ts",
"clean": "yarn clean:sol && yarn clean:yul",
"clean:sol": "hardhat clean",
"clean:yul": "rm -rf ./bootloader/build ./bootloader/tests/artifacts ./contracts/artifacts ./contracts/precompiles/artifacts",
"clean": "yarn clean:sol && yarn clean:yul",
"compile-yul": "ts-node scripts/compile-yul.ts",
"deploy-preimages": "ts-node scripts/deploy-preimages.ts",
"lint:check": "yarn lint:md && yarn lint:sol && yarn lint:ts && yarn prettier:check",
Expand All @@ -72,7 +72,7 @@
"preprocess:yul": "rm -rf ./bootloader/build && yarn ts-node scripts/process.ts",
"prettier:check": "prettier --check \"**/*.{js,json,md,sol,ts,yaml}\"",
"prettier:fix": "prettier --write \"**/*.{js,json,md,sol,ts,yaml}\"",
"test:bootloader": "cd bootloader/test_infra && cargo run",
"test": "hardhat test --network zkSyncTestNode"
"test": "hardhat test --network zkSyncTestNode",
"test:bootloader": "cd bootloader/test_infra && cargo run"
}
}

0 comments on commit 6e9bf3f

Please sign in to comment.