render-core 1.4.6 → 1.4.7

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": "render-core",
3
- "version": "1.4.6",
3
+ "version": "1.4.7",
4
4
  "description": "The extendable javascript web framework",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -1,10 +1,8 @@
1
1
  import { HttpAction } from "../system/prototype/HttpAction";
2
- import { RouterAction } from "./prototype/RouterAction";
3
2
  var SystemInitPlugin = /** @class */ (function () {
4
3
  function SystemInitPlugin() {
5
4
  }
6
5
  SystemInitPlugin.prototype.plugin = function (preface, hooks) {
7
- preface.add_system_router(new RouterAction(hooks));
8
6
  preface.add_user_http(new HttpAction());
9
7
  };
10
8
  return SystemInitPlugin;