diff --git a/package-lock.json b/package-lock.json index b2ef300..04c2a15 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { - "name": "reactium-core", - "version": "5.0.0-alpha-3", + "name": "reactium-core-project", + "version": "5.0.0", "lockfileVersion": 3, "requires": true, "packages": { "": { - "name": "reactium-core", - "version": "5.0.0-alpha-3", + "name": "reactium-core-project", + "version": "5.0.0", "license": "MIT", "workspaces": [ "reactium_modules/*", @@ -23866,7 +23866,7 @@ "license": "MIT" }, "reactium_modules/@atomic-reactor/reactium-core": { - "version": "5.0.2", + "version": "5.0.6", "license": "MIT", "dependencies": { "@atomic-reactor/dirname": "^1.0.2", diff --git a/package.json b/package.json index a4f5206..9922d6b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "reactium-core-project", - "version": "5.0.0", + "version": "5.0.6", "description": "A framework for creating React + Redux apps using the domain driven design (DDD) paradigm.", "main": "index.js", "scripts": { @@ -58,7 +58,7 @@ "@atomic-reactor/reactium-user": "5.0.1", "@atomic-reactor/reactium-setting": "5.0.1", "@atomic-reactor/reactium-svg": "0.0.3", - "@atomic-reactor/reactium-core": "5.0.2" + "@atomic-reactor/reactium-core": "5.0.6" }, "workspaces": [ "reactium_modules/*", diff --git a/src/app/main.js b/src/app/main.js index fa0e5e6..2494641 100644 --- a/src/app/main.js +++ b/src/app/main.js @@ -10,20 +10,4 @@ import { Shell } from '@atomic-reactor/reactium-core/app/shell'; const { AppError } = await import('@atomic-reactor/reactium-core/app'); await AppError(error); } - - /** - * @description Initialize the app. - */ - if (module.hot) { - module.hot.accept( - [ - '../../reactium_modules/@atomic-reactor/reactium-core/dependencies/index.js', - '../../reactium_modules/@atomic-reactor/reactium-core/app.js', - '../../reactium_modules/@atomic-reactor/reactium-core/sdk/index.js', - ], - () => { - window.location.reload(); - }, - ); - } })();