Skip to content

Commit

Permalink
Change back to hw-app-eth@6.30.x
Browse files Browse the repository at this point in the history
  • Loading branch information
shanejearley committed Jul 26, 2023
1 parent 712040d commit 84b1af8
Show file tree
Hide file tree
Showing 5 changed files with 70 additions and 164 deletions.
3 changes: 1 addition & 2 deletions apps/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "Casimir web app",
"private": true,
"scripts": {
"dev": "vite",
"dev": "vite --force",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview"
},
Expand All @@ -14,7 +14,6 @@
"@walletconnect/web3-provider": "^1.8.0",
"@web3modal/ethereum": "^2.7.1",
"@web3modal/html": "^2.7.1",
"agent-base": "^7.1.0",
"borsh": "^0.7.0",
"buffer": "^6.0.3",
"d3": "^7.8.1",
Expand Down
11 changes: 8 additions & 3 deletions apps/web/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,7 @@ export default defineConfig({
resolve: {
alias: {
'@': path.resolve(path.dirname(fileURLToPath(import.meta.url)), 'src'),
'./runtimeConfig': './runtimeConfig.browser',
https: 'agent-base'
'./runtimeConfig': './runtimeConfig.browser'
},
extensions: [
'.js',
Expand All @@ -29,5 +28,11 @@ export default defineConfig({
'.vue',
]
},
envPrefix: 'PUBLIC_'
envPrefix: 'PUBLIC_',
build: {
commonjsOptions: {
include: [/node_modules/],
transformMixedEsModules: true
}
}
})
2 changes: 1 addition & 1 deletion common/wallets/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
},
"dependencies": {
"@ledgerhq/hw-app-btc": "^9.1.2",
"@ledgerhq/hw-app-eth": "6.34.1",
"@ledgerhq/hw-app-eth": "6.30.4",
"@ledgerhq/hw-transport": "^6.27.10",
"@ledgerhq/hw-transport-webusb": "^6.27.10",
"@trezor/connect-web": "^9.0.3",
Expand Down
8 changes: 5 additions & 3 deletions infrastructure/cdk/src/providers/analytics.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,16 @@ export class AnalyticsStack extends cdk.Stack {

/** Create S3 buckets */
const eventBucket = new s3.Bucket(this, config.getFullStackResourceName(this.name, 'event-bucket', config.dataVersion), {
bucketName: kebabCase(config.getFullStackResourceName(this.name, 'event-bucket', config.dataVersion)),
bucketName: kebabCase(config.getFullStackResourceName(this.name, 'event-bucket', config.dataVersion))
})

const actionBucket = new s3.Bucket(this, config.getFullStackResourceName(this.name, 'action-bucket', config.dataVersion), {
bucketName: kebabCase(config.getFullStackResourceName(this.name, 'action-bucket', config.dataVersion)),
bucketName: kebabCase(config.getFullStackResourceName(this.name, 'action-bucket', config.dataVersion))
})

new s3.Bucket(this, config.getFullStackResourceName(this.name, 'output-bucket', config.dataVersion))
new s3.Bucket(this, config.getFullStackResourceName(this.name, 'output-bucket', config.dataVersion), {
bucketName: kebabCase(config.getFullStackResourceName(this.name, 'output-bucket', config.dataVersion))
})

/** Create Glue tables */
new glue.Table(this, config.getFullStackResourceName(this.name, 'event-table', config.dataVersion), {
Expand Down
Loading

0 comments on commit 84b1af8

Please sign in to comment.