kitchen-simulator 5.0.0-test.70 → 5.0.0-test.72

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kitchen-simulator",
3
- "version": "5.0.0-test.70",
3
+ "version": "5.0.0-test.72",
4
4
  "description": "It is a kitchen simulator.",
5
5
  "main": "src/index.js",
6
6
  "module": "src/index.js",
@@ -6,7 +6,7 @@ import ReactDOM from 'react-dom';
6
6
  import * as Three from 'three';
7
7
  import { parseData, updateScene } from './scene-creator';
8
8
  import { disposeScene } from './three-memory-cleaner';
9
- import diff from 'immutablediff';
9
+ import * as diff from 'immutablediff';
10
10
  import { initPointerLock } from './pointer-lock-navigation';
11
11
  import {
12
12
  firstPersonOnKeyDown,
@@ -15,7 +15,7 @@ import {
15
15
  visibleTransformBox
16
16
  } from './scene-creator';
17
17
  import { disposeObject, disposeScene } from './three-memory-cleaner';
18
- import diff from 'immutablediff';
18
+ import * as diff from 'immutablediff';
19
19
  import * as SharedStyle from '../../shared-style';
20
20
  import {
21
21
  BASE_CABINET_LAYOUTPOS,
@@ -1,6 +1,6 @@
1
1
  import { Map } from 'immutable';
2
- import diff from 'immutablediff';
3
- import patch from 'immutablepatch';
2
+ import * as diff from 'immutablediff';
3
+ import * as patch from 'immutablepatch';
4
4
 
5
5
  export const historyPush = (historyStructure, item) => {
6
6
  if (historyStructure.last) {