Skip to content

Commit

Permalink
ci: don't install greater than npm 8
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcdo29 committed Nov 9, 2022
1 parent 4a10b88 commit 9970ace
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Expand Up @@ -35,7 +35,7 @@ jobs:
- checkout
- run:
name: Update NPM version
command: 'sudo npm install -g npm@latest'
command: 'sudo npm install -g npm@^8'
- restore_cache:
key: dependency-cache-{{ checksum "package.json" }}
- run:
Expand Down
1 change: 1 addition & 0 deletions packages/websockets/context/ws-context-creator.ts
Expand Up @@ -108,6 +108,7 @@ export class WsContextCreator {
};

return this.wsProxy.create(async (...args: unknown[]) => {
console.log(args);
args.push(this.reflectCallbackPattern(callback));
const initialArgs = this.contextUtils.createNullArray(argsLength);
fnCanActivate && (await fnCanActivate(args));
Expand Down

0 comments on commit 9970ace

Please sign in to comment.