Skip to content

Commit

Permalink
Fix imports for @casimir/aws
Browse files Browse the repository at this point in the history
  • Loading branch information
shanejearley committed Aug 8, 2023
1 parent 668ef46 commit c0f6fb8
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 7 deletions.
1 change: 0 additions & 1 deletion common/aws/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import { exec, execSync } from 'child_process'
import { fromIni } from '@aws-sdk/credential-providers'
import { SecretsManagerClient, GetSecretValueCommand } from '@aws-sdk/client-secrets-manager'

Expand Down
2 changes: 1 addition & 1 deletion scripts/actions/test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { $, echo } from 'zx'
import { loadCredentials } from '@casimir/helpers'
import { loadCredentials } from '@casimir/aws'

/**
* Test the GitHub Actions workflows in `.github/workflows`
Expand Down
2 changes: 1 addition & 1 deletion scripts/cdk/deploy.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { getSecret, loadCredentials } from '@casimir/helpers'
import { getSecret, loadCredentials } from '@casimir/aws'
import { $, echo } from 'zx'

/**
Expand Down
2 changes: 1 addition & 1 deletion scripts/cdk/test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { getSecret, loadCredentials } from '@casimir/helpers'
import { getSecret, loadCredentials } from '@casimir/aws'
import { $, echo } from 'zx'

/**
Expand Down
3 changes: 2 additions & 1 deletion scripts/ethereum/dev.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { ethers } from 'ethers'
import { $, echo, chalk } from 'zx'
import { loadCredentials, getSecret, getWallet, runSync, run } from '@casimir/helpers'
import { getWallet } from '@casimir/helpers'
import { loadCredentials, getSecret } from '@casimir/aws'

/**
* Run local a local Ethereum node and deploy contracts
Expand Down
3 changes: 2 additions & 1 deletion scripts/ethereum/test.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { ethers } from 'ethers'
import { $, chalk, echo } from 'zx'
import { loadCredentials, getSecret, getWallet, run } from '@casimir/helpers'
import { getWallet, run } from '@casimir/helpers'
import { loadCredentials, getSecret } from '@casimir/aws'

/**
* Test Ethereum contracts
Expand Down
3 changes: 2 additions & 1 deletion scripts/local/dev.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { ethers } from 'ethers'
import { $, chalk, echo } from 'zx'
import { loadCredentials, getSecret, getWallet, run, runSync } from '@casimir/helpers'
import { getWallet, run, runSync } from '@casimir/helpers'
import { loadCredentials, getSecret } from '@casimir/aws'

/**
* Run a Casimir dev server
Expand Down

0 comments on commit c0f6fb8

Please sign in to comment.