Skip to content

Commit

Permalink
Merge pull request #38 from StauroDEV/bump-build-fix
Browse files Browse the repository at this point in the history
fix: build modules and bump deps
  • Loading branch information
talentlessguy authored May 28, 2024
2 parents b9eebe2 + ae7326e commit 6cf90dd
Show file tree
Hide file tree
Showing 8 changed files with 590 additions and 666 deletions.
28 changes: 14 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,28 +41,28 @@
"@stauro/piggybank": "^0.0.5",
"@ucanto/core": "^10.0.1",
"@ucanto/principal": "^9.0.1",
"@web3-storage/access": "^18.2.0",
"@web3-storage/w3up-client": "^12.4.1",
"@web3-storage/access": "^19.0.0",
"@web3-storage/w3up-client": "^13.1.1",
"ascii-bar": "^1.0.3",
"cborg": "^4.1.3",
"cborg": "^4.2.0",
"colorette": "^2.0.20",
"globby": "^14.0.1",
"ipfs-car": "^1.2.0",
"multiformats": "^13.1.0",
"spektr": "^0.0.5",
"table": "^6.8.1",
"viem": "^2.8.13"
"table": "^6.8.2",
"viem": "^2.13.1"
},
"devDependencies": {
"@eslint/js": "^9.1.1",
"@stylistic/eslint-plugin": "^1.7.2",
"@types/node": "^20.11.30",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"eslint": "^9.1.1",
"globals": "^15.1.0",
"semantic-release": "^23.0.8",
"typescript": "^5.4.2"
"@eslint/js": "^9.3.0",
"@stylistic/eslint-plugin": "^2.1.0",
"@types/node": "^20.12.12",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"eslint": "^9.3.0",
"globals": "^15.3.0",
"semantic-release": "^23.1.1",
"typescript": "^5.4.5"
},
"release": {
"branches": [
Expand Down
1,211 changes: 568 additions & 643 deletions pnpm-lock.yaml

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion src/actions/deploy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import { deployMessage, logger } from '../utils/logger.js'
import * as colors from 'colorette'
import { dnsLinkAction } from './dnslink.js'

// @ts-expect-error authors of AsciiBar didnt publish the package properly
const AsciiBar = mod.default

export type DeployActionArgs = Partial<{
Expand Down
4 changes: 2 additions & 2 deletions src/actions/ping.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import * as colors from 'colorette'
import { isTTY } from '../constants'
import { logger } from '../utils/logger'
import { isTTY } from '../constants.js'
import { logger } from '../utils/logger.js'

let retryCount = 0

Expand Down
2 changes: 1 addition & 1 deletion src/utils/ens.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { encode } from '@ensdomains/content-hash'
import { Address, parseAbi } from 'viem'
import { namehash, normalize } from 'viem/ens'
import type { ChainName } from '../types'
import type { ChainName } from '../types.js'

export const prepareUpdateEnsArgs = async ({ cid, domain }: { cid: string, domain: string }) => {
const contentHash = encode('ipfs', cid)
Expand Down
2 changes: 1 addition & 1 deletion src/utils/safe.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
import type { ChainName } from '../types'
import type { ChainName } from '../types.js'

export const chainToSafeApiUrl = (chainName: ChainName) => `https://safe-transaction-${chainName}.safe.global`
4 changes: 2 additions & 2 deletions tsconfig.build.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"compilerOptions": {
"module": "Preserve",
"module": "NodeNext",
"target": "es2022",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"moduleResolution": "Bundler",
"moduleResolution": "NodeNext",
"outDir": "dist",
"isolatedModules": true,
"resolveJsonModule": true
Expand Down
4 changes: 2 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"compilerOptions": {
"module": "Preserve",
"module": "NodeNext",
"target": "es2022",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"moduleResolution": "Bundler",
"moduleResolution": "NodeNext",
"outDir": "dist",
"isolatedModules": true,
"resolveJsonModule": true
Expand Down

0 comments on commit 6cf90dd

Please sign in to comment.