diff --git a/Dockerfile b/Dockerfile index 446340248..f40cc6e49 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,6 +15,7 @@ COPY typescript/sdk/package.json ./typescript/sdk/ COPY typescript/helloworld/package.json ./typescript/helloworld/ COPY typescript/cli/package.json ./typescript/cli/ COPY typescript/infra/package.json ./typescript/infra/ +COPY typescript/ccip-server/package.json ./typescript/ccip-server/ COPY solidity/package.json ./solidity/ RUN yarn install && yarn cache clean diff --git a/typescript/infra/src/agents/agent.ts b/typescript/infra/src/agents/agent.ts index 206ede345..e6afe9f02 100644 --- a/typescript/infra/src/agents/agent.ts +++ b/typescript/infra/src/agents/agent.ts @@ -48,7 +48,7 @@ export function userIdentifier( return identifier(false, environment, context, role, chainName, index); } -// Doesn't perform any checks on whether the parsed values are valid, +// Does not perform any checks on whether the parsed values are valid, // this is left to the caller. export function parseKeyIdentifier(identifier: string): { environment: string;