Skip to content

Commit

Permalink
rename more
Browse files Browse the repository at this point in the history
  • Loading branch information
malteish committed Jul 17, 2024
1 parent 09b9db3 commit 0848699
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions packages/offchain-resolver/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@
"docker:up": "docker compose up -d",
"test": "yarn docker:up && yarn prisma:migrate && yarn mocha --require ts-node/register --extension .test.ts --recursive ./src",
"start": "yarn prisma:migrate && yarn ts-node --transpile-only ./src/index.ts",
"build": "yarn prisma generate --schema=./src/persistance/schema.prisma && yarn tsc",
"prisma:migrate": "yarn prisma migrate dev --name init --schema src/persistance/schema.prisma"
"build": "yarn prisma generate --schema=./src/persistence/schema.prisma && yarn tsc",
"prisma:migrate": "yarn prisma migrate dev --name init --schema src/persistence/schema.prisma"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
Expand Down
6 changes: 3 additions & 3 deletions packages/offchain-resolver/src/http/profile.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ import express from 'express';

import request from 'supertest';
import winston from 'winston';
import { getDatabase, getDbClient } from '../persistance/getDatabase';
import { IDatabase } from '../persistance/IDatabase';
import { getDatabase, getDbClient } from '../persistence/getDatabase';
import { IDatabase } from '../persistence/IDatabase';
import { profile } from './profile';

import { PrismaClient } from '@prisma/client';
import * as dotenv from 'dotenv';
import { clearDb } from '../persistance/clearDb';
import { clearDb } from '../persistence/clearDb';

import { expect } from 'chai';
import { sign } from '@dm3-org/dm3-lib-crypto';
Expand Down
6 changes: 3 additions & 3 deletions packages/offchain-resolver/src/http/resolverEndpoint.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ import { expect } from 'chai';
import { ethers } from 'ethers';
import express from 'express';
import request from 'supertest';
import { IDatabase } from '../persistance/IDatabase';
import { clearDb } from '../persistance/clearDb';
import { getDatabase, getDbClient } from '../persistance/getDatabase';
import { IDatabase } from '../persistence/IDatabase';
import { clearDb } from '../persistence/clearDb';
import { getDatabase, getDbClient } from '../persistence/getDatabase';
import { encodeEnsName } from './handleCcipRequest/dns/encodeEnsName';
import { Interceptor } from './handleCcipRequest/handler/intercept';
import { profile } from './profile';
Expand Down

0 comments on commit 0848699

Please sign in to comment.