Skip to content

Commit

Permalink
Merge pull request #305 from Moonsong-Labs/pkg-update
Browse files Browse the repository at this point in the history
pkg updates
  • Loading branch information
timbrinded authored Nov 9, 2023
2 parents 780c75a + 415c5d1 commit b985cbe
Show file tree
Hide file tree
Showing 8 changed files with 320 additions and 528 deletions.
8 changes: 8 additions & 0 deletions .changeset/fast-windows-rule.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
"@moonwall/types": patch
"@moonwall/util": patch
"@moonwall/cli": patch
"@moonwall/tests": patch
---

Package Ver Updates
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@pnpm/eslint-config": "^1.1.0",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"eslint": "^8.50.0",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-xo": "^0.43.1",
"eslint-config-xo-typescript": "^1.0.1",
Expand Down
18 changes: 9 additions & 9 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
"prepublish": "pnpm run build && pnpm run generate-types"
},
"dependencies": {
"@acala-network/chopsticks": "^0.9.0",
"@acala-network/chopsticks": "^0.9.1",
"@moonbeam-network/api-augment": "^0.2500.0",
"@moonwall/types": "workspace:*",
"@moonwall/util": "workspace:*",
Expand All @@ -84,25 +84,25 @@
"dotenv": "^16.3.1",
"ethers": "^6.8.1",
"execa": "^8.0.1",
"inquirer": "^9.2.11",
"inquirer": "^9.2.12",
"inquirer-press-to-continue": "^1.2.0",
"jsonc-parser": "^3.2.0",
"minimatch": "^9.0.3",
"node-fetch": "^3.3.2",
"semver": "^7.5.4",
"viem": "^1.18.0",
"vitest": "1.0.0-beta.3",
"viem": "^1.18.9",
"vitest": "1.0.0-beta.4",
"web3": "4.2.1",
"web3-providers-ws": "4.0.7",
"ws": "^8.14.2",
"yaml": "^2.3.3",
"yaml": "^2.3.4",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/cli-progress": "^3.11.4",
"@types/debug": "^4.1.10",
"@types/node": "^20.8.10",
"@types/yargs": "^17.0.29",
"@types/cli-progress": "^3.11.5",
"@types/debug": "^4.1.12",
"@types/node": "^20.9.0",
"@types/yargs": "^17.0.31",
"prettier": "^2.8.8",
"tsup": "^7.2.0",
"tsx": "^3.14.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/cli/src/internal/commandParsers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export function parseChopsticksRunCmd(launchSpecs: ChopsticksLaunchSpec[]): {
if (launchSpecs.length === 1) {
const chopsticksCmd = "node";
const chopsticksArgs = [
"node_modules/@acala-network/chopsticks/chopsticks.js",
"node_modules/@acala-network/chopsticks/chopsticks.cjs",
`--config=${launchSpecs[0].configPath}`,
];

Expand Down Expand Up @@ -99,7 +99,7 @@ export function parseChopsticksRunCmd(launchSpecs: ChopsticksLaunchSpec[]): {
}

const chopsticksCmd = "node";
const chopsticksArgs = ["node_modules/@acala-network/chopsticks/chopsticks.js", "xcm"];
const chopsticksArgs = ["node_modules/@acala-network/chopsticks/chopsticks.cjs", "xcm"];

launchSpecs.forEach((spec) => {
const type = spec.type ? spec.type : "parachain";
Expand Down
4 changes: 2 additions & 2 deletions packages/types/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,12 +64,12 @@
"@polkadot/types": "^10.10.1",
"@polkadot/util": "^12.5.1",
"@polkadot/util-crypto": "^12.5.1",
"@types/node": "^20.8.9",
"@types/node": "^20.9.0",
"@zombienet/utils": "^0.0.24",
"bottleneck": "^2.19.5",
"debug": "^4.3.4",
"ethers": "^6.8.1",
"viem": "^1.18.0",
"viem": "^1.18.9",
"web3": "4.2.1"
},
"publishConfig": {
Expand Down
14 changes: 7 additions & 7 deletions packages/util/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -76,22 +76,22 @@
"debug": "^4.3.4",
"dotenv": "^16.3.1",
"ethers": "^6.8.1",
"inquirer": "^9.2.11",
"inquirer": "^9.2.12",
"inquirer-press-to-continue": "^1.2.0",
"node-fetch": "^3.3.2",
"rlp": "^3.0.0",
"semver": "^7.5.4",
"viem": "^1.16.6",
"vitest": "1.0.0-beta.3",
"viem": "^1.18.9",
"vitest": "1.0.0-beta.4",
"web3": "4.2.1",
"ws": "^8.14.2",
"yaml": "^2.3.3",
"yaml": "^2.3.4",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/debug": "^4.1.10",
"@types/node": "^20.8.7",
"@types/yargs": "^17.0.29",
"@types/debug": "^4.1.12",
"@types/node": "^20.9.0",
"@types/yargs": "^17.0.31",
"prettier": "^2.8.8",
"tsup": "^7.2.0",
"typescript": "^5.2.2"
Expand Down
Loading

0 comments on commit b985cbe

Please sign in to comment.