kitchen-simulator 5.0.0-test.14 → 5.0.0-test.15
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 +2 -2
- package/src/index.js +0 -32
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "kitchen-simulator",
|
|
3
|
-
"version": "5.0.0-test.
|
|
3
|
+
"version": "5.0.0-test.15",
|
|
4
4
|
"description": "It is a kitchen simulator.",
|
|
5
5
|
"main": "src/_index.js",
|
|
6
6
|
"module": "src/_index.js",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"src/_renderer.jsx",
|
|
18
18
|
"src/AppContext.js",
|
|
19
19
|
"src/constants.js",
|
|
20
|
-
"src/
|
|
20
|
+
"src/_index.js",
|
|
21
21
|
"src/index.html.ejs",
|
|
22
22
|
"src/_KitchenConfigurator.jsx",
|
|
23
23
|
"src/KitchenConfiguratorApp.jsx",
|
package/src/index.js
DELETED
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
import Catalog from './catalog/catalog';
|
|
2
|
-
import Translator from './translator/translator';
|
|
3
|
-
import * as Models from './models';
|
|
4
|
-
import reducer from './reducers/reducer';
|
|
5
|
-
import KitchenConfigurator from './KitchenConfigurator';
|
|
6
|
-
import Plugins from './plugins/export';
|
|
7
|
-
import * as KitchenConfiguratorConstants from './constants';
|
|
8
|
-
import * as KitchenConfiguratorSharedStyle from './shared-style';
|
|
9
|
-
import KitchenConfiguratorComponents from './components/export';
|
|
10
|
-
import KitchenConfiguratorActions from './actions/export';
|
|
11
|
-
import KitchenConfiguratorReducers from './reducers/export';
|
|
12
|
-
import KitchenConfiguratorClasses from './class/export';
|
|
13
|
-
import ElementsFactories from './catalog/factories/export';
|
|
14
|
-
import KitchenConfiguratorUtils from './utils/export';
|
|
15
|
-
export {
|
|
16
|
-
Catalog,
|
|
17
|
-
Translator,
|
|
18
|
-
Models,
|
|
19
|
-
reducer,
|
|
20
|
-
KitchenConfigurator,
|
|
21
|
-
Plugins,
|
|
22
|
-
KitchenConfiguratorConstants,
|
|
23
|
-
KitchenConfiguratorSharedStyle,
|
|
24
|
-
KitchenConfiguratorComponents,
|
|
25
|
-
KitchenConfiguratorActions,
|
|
26
|
-
KitchenConfiguratorReducers,
|
|
27
|
-
KitchenConfiguratorClasses,
|
|
28
|
-
ElementsFactories,
|
|
29
|
-
KitchenConfiguratorUtils
|
|
30
|
-
};
|
|
31
|
-
|
|
32
|
-
export { default } from './KitchenConfiguratorApp';
|