aeria 0.0.68 → 0.0.69

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/dist/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  export * from '@aeriajs/access-control';
2
- export * from '@aeriajs/api';
2
+ export * from '@aeriajs/core';
3
3
  export * from '@aeriajs/common';
4
4
  export * from '@aeriajs/entrypoint';
5
5
  export * from '@aeriajs/http';
package/dist/index.js CHANGED
@@ -15,7 +15,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("@aeriajs/access-control"), exports);
18
- __exportStar(require("@aeriajs/api"), exports);
18
+ __exportStar(require("@aeriajs/core"), exports);
19
19
  __exportStar(require("@aeriajs/common"), exports);
20
20
  __exportStar(require("@aeriajs/entrypoint"), exports);
21
21
  __exportStar(require("@aeriajs/http"), exports);
package/dist/index.mjs CHANGED
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  export * from "@aeriajs/access-control";
3
- export * from "@aeriajs/api";
3
+ export * from "@aeriajs/core";
4
4
  export * from "@aeriajs/common";
5
5
  export * from "@aeriajs/entrypoint";
6
6
  export * from "@aeriajs/http";
package/dist/loader.js CHANGED
@@ -1,11 +1,4 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- const common_1 = require("@aeriajs/common");
4
- const main = async () => {
5
- const entrypoint = await (0, common_1.dynamicImport)(process.argv[1]);
6
- const entrypointMain = entrypoint.default
7
- ? entrypoint.default
8
- : entrypoint;
9
- entrypointMain.listen();
10
- };
11
- main();
3
+ const server_1 = require("@aeriajs/server");
4
+ (0, server_1.loader)();
package/dist/loader.mjs CHANGED
@@ -1,8 +1,3 @@
1
1
  "use strict";
2
- import { dynamicImport } from "@aeriajs/common";
3
- const main = async () => {
4
- const entrypoint = await dynamicImport(process.argv[1]);
5
- const entrypointMain = entrypoint.default ? entrypoint.default : entrypoint;
6
- entrypointMain.listen();
7
- };
8
- main();
2
+ import { loader } from "@aeriajs/server";
3
+ loader();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aeria",
3
- "version": "0.0.68",
3
+ "version": "0.0.69",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -23,30 +23,31 @@
23
23
  "dist"
24
24
  ],
25
25
  "devDependencies": {
26
- "@aeriajs/access-control": "^0.0.34",
27
- "@aeriajs/api": "^0.0.63",
28
- "@aeriajs/common": "^0.0.34",
29
- "@aeriajs/entrypoint": "^0.0.34",
30
- "@aeriajs/http": "^0.0.42",
31
- "@aeriajs/node-http": "^0.0.42",
32
- "@aeriajs/security": "^0.0.63",
33
- "@aeriajs/server": "^0.0.64",
34
- "@aeriajs/builtins": "^0.0.63",
35
- "@aeriajs/types": "^0.0.31",
36
- "@aeriajs/validation": "^0.0.37"
26
+ "@aeriajs/access-control": "^0.0.35",
27
+ "@aeriajs/core": "^0.0.64",
28
+ "@aeriajs/common": "^0.0.35",
29
+ "@aeriajs/entrypoint": "^0.0.35",
30
+ "@aeriajs/http": "^0.0.43",
31
+ "@aeriajs/node-http": "^0.0.43",
32
+ "@aeriajs/security": "^0.0.64",
33
+ "@aeriajs/server": "^0.0.65",
34
+ "@aeriajs/builtins": "^0.0.64",
35
+ "@aeriajs/types": "^0.0.32",
36
+ "@aeriajs/validation": "^0.0.38"
37
37
  },
38
38
  "peerDependencies": {
39
- "@aeriajs/access-control": "^0.0.34",
40
- "@aeriajs/api": "^0.0.63",
41
- "@aeriajs/common": "^0.0.34",
42
- "@aeriajs/entrypoint": "^0.0.34",
43
- "@aeriajs/http": "^0.0.42",
44
- "@aeriajs/node-http": "^0.0.42",
45
- "@aeriajs/security": "^0.0.63",
46
- "@aeriajs/server": "^0.0.64",
47
- "@aeriajs/builtins": "^0.0.63",
48
- "@aeriajs/types": "^0.0.31",
49
- "@aeriajs/validation": "^0.0.37"
39
+ "@aeriajs/access-control": "^0.0.35",
40
+ "@aeriajs/cli": "^0.0.1",
41
+ "@aeriajs/core": "^0.0.64",
42
+ "@aeriajs/common": "^0.0.35",
43
+ "@aeriajs/entrypoint": "^0.0.35",
44
+ "@aeriajs/http": "^0.0.43",
45
+ "@aeriajs/node-http": "^0.0.43",
46
+ "@aeriajs/security": "^0.0.64",
47
+ "@aeriajs/server": "^0.0.65",
48
+ "@aeriajs/builtins": "^0.0.64",
49
+ "@aeriajs/types": "^0.0.32",
50
+ "@aeriajs/validation": "^0.0.38"
50
51
  },
51
52
  "scripts": {
52
53
  "test": "echo skipping",