Skip to content

Commit

Permalink
chore: update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
b-ma committed Nov 10, 2023
1 parent 5c9bc20 commit bf3c9dc
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 8 deletions.
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,7 @@
"isomorphic-ws": "^5.0.0",
"keyv": "^4.5.4",
"keyv-file": "^0.2.0",
"lodash.clonedeep": "^4.5.0",
"lodash.merge": "^4.6.2",
"lodash": "^4.17.21",
"pem": "^1.14.8",
"template-literal": "^1.0.4",
"uuid": "^9.0.1",
Expand Down
1 change: 0 additions & 1 deletion src/client/Socket.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { isBrowser } from '@ircam/sc-utils';
import fetch from 'cross-fetch';
import WebSocket from 'isomorphic-ws';

import {
Expand Down
2 changes: 1 addition & 1 deletion src/common/BasePlugin.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import merge from 'lodash.merge';
import merge from 'lodash/merge.js';

/**
* @private
Expand Down
2 changes: 1 addition & 1 deletion src/common/ParameterBag.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import cloneDeep from 'lodash.clonedeep';
import cloneDeep from 'lodash/clonedeep.js';
import equal from 'fast-deep-equal';

export const sharedOptions = {
Expand Down
2 changes: 1 addition & 1 deletion src/server/Server.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import compression from 'compression';
import express from 'express';
import Keyv from 'keyv';
import { KeyvFile } from 'keyv-file';
import merge from 'lodash.merge';
import merge from 'lodash/merge.js';
import pem from 'pem';
import compile from 'template-literal';

Expand Down
2 changes: 1 addition & 1 deletion src/server/StateManager.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import EventEmitter from 'node:events';

import { idGenerator, isString, isPlainObject } from '@ircam/sc-utils';
import clonedeep from 'lodash.clonedeep';
import clonedeep from 'lodash/clonedeep.js';

import BaseStateManager from '../common/BaseStateManager.js';
import ParameterBag from '../common/ParameterBag.js';
Expand Down
2 changes: 1 addition & 1 deletion tests/common.state-manager.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -1361,7 +1361,7 @@ describe(`common::StateManager`, () => {
});
});

describe.only(`await getCollection()`, () => {
describe(`await getCollection()`, () => {
it(`should return a working state collection`, async () => {
const client0 = clients[0];
const client1 = clients[1];
Expand Down

0 comments on commit bf3c9dc

Please sign in to comment.