Skip to content

Commit

Permalink
fix: camel case file name
Browse files Browse the repository at this point in the history
  • Loading branch information
b-ma committed Nov 10, 2023
1 parent bf3c9dc commit d6ee4f6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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.js';
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/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.js';
import clonedeep from 'lodash/cloneDeep.js';

import BaseStateManager from '../common/BaseStateManager.js';
import ParameterBag from '../common/ParameterBag.js';
Expand Down

0 comments on commit d6ee4f6

Please sign in to comment.