Skip to content

Commit

Permalink
fix: update build settings for deposit-address module
Browse files Browse the repository at this point in the history
  • Loading branch information
canhtrinh committed Sep 23, 2023
1 parent 5737611 commit a7457a7
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 3 deletions.
13 changes: 13 additions & 0 deletions .changeset/wise-bugs-listen.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
"@axelarjs/deposit-address": patch
"@axelarjs/api": patch
"@axelarjs/config": patch
"@axelarjs/core": patch
"@axelarjs/cosmos": patch
"@axelarjs/evm": patch
"@axelarjs/proto": patch
"@axelarjs/transaction-recovery": patch
"@axelarjs/utils": patch
---

update build settings for deposit-address module
4 changes: 4 additions & 0 deletions packages/deposit-address/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@
"import": "./build/module/*.js",
"require": "./build/commonjs/*.js"
},
"./helpers": {
"import": "./build/module/helpers/index.js",
"require": "./build/commonjs/helpers/index.js"
},
"./helpers/*": {
"import": "./build/module/helpers/*.js",
"require": "./build/commonjs/helpers/*.js"
Expand Down
2 changes: 1 addition & 1 deletion packages/deposit-address/scripts/clean.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/bash

npx rimraf build *.js *.d.ts
npx rimraf build helpers *.js *.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import {
} from "@axelarjs/api";
import { isStrEqual, poll } from "@axelarjs/utils";

import type { GetDepositAddressDependencies, SendOptions } from "~/types";
import type { GetDepositAddressDependencies, SendOptions } from "../types";
import { createDummyAccount, signOtc } from "./account";

export type ListenerParams = {
Expand Down
2 changes: 1 addition & 1 deletion packages/deposit-address/src/types.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import type {
AxelarConfigClient,
AxelarscanClient,
DepositAddressClient,
GMPClient,
} from "@axelarjs/api";
import { type DepositAddressClient } from "@axelarjs/api/deposit-address/isomorphic";
import { type Environment } from "@axelarjs/core";

export type SendOptions = {
Expand Down

2 comments on commit a7457a7

@vercel
Copy link

@vercel vercel bot commented on a7457a7 Sep 23, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

axelar-ui – ./packages/ui

axelar-ui-git-main-axelar-network.vercel.app
axelar-ui-axelar-network.vercel.app
axelar-ui.vercel.app
ui.axelar.dev

@vercel
Copy link

@vercel vercel bot commented on a7457a7 Sep 23, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

axelar-registry – ./apps/registry

axelar-registry-git-main-axelar-network.vercel.app
axelar-registry-axelar-network.vercel.app

Please sign in to comment.