alepha 0.6.0 → 0.6.2

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/cache.cjs CHANGED
File without changes
package/dist/cache.js CHANGED
File without changes
package/dist/core.cjs CHANGED
File without changes
package/dist/core.d.ts CHANGED
@@ -9,3 +9,4 @@ import '@alepha/topic';
9
9
  import '@alepha/queue';
10
10
  import '@alepha/scheduler';
11
11
  import '@alepha/security';
12
+ import '@alepha/server';
package/dist/core.js CHANGED
File without changes
package/dist/lock.cjs CHANGED
File without changes
package/dist/lock.js CHANGED
File without changes
package/dist/postgres.cjs CHANGED
File without changes
package/dist/postgres.js CHANGED
File without changes
package/dist/queue.cjs CHANGED
File without changes
package/dist/queue.js CHANGED
File without changes
package/dist/react.cjs CHANGED
File without changes
package/dist/react.js CHANGED
File without changes
package/dist/redis.cjs CHANGED
File without changes
package/dist/redis.js CHANGED
File without changes
File without changes
package/dist/scheduler.js CHANGED
File without changes
package/dist/security.cjs CHANGED
File without changes
package/dist/security.js CHANGED
File without changes
@@ -0,0 +1,12 @@
1
+ 'use strict';
2
+
3
+ var server = require('@alepha/server');
4
+
5
+
6
+
7
+ Object.keys(server).forEach(function (k) {
8
+ if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
9
+ enumerable: true,
10
+ get: function () { return server[k]; }
11
+ });
12
+ });
@@ -0,0 +1 @@
1
+ export * from '@alepha/server';
package/dist/server.js ADDED
@@ -0,0 +1 @@
1
+ export * from '@alepha/server';
package/dist/topic.cjs CHANGED
File without changes
package/dist/topic.js CHANGED
File without changes
package/dist/vite.cjs CHANGED
File without changes
package/dist/vite.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,29 +1,42 @@
1
1
  {
2
2
  "name": "alepha",
3
- "version": "0.6.0",
3
+ "version": "0.6.2",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "main": "./dist/core.js",
7
7
  "types": "./dist/core.d.ts",
8
8
  "dependencies": {
9
- "@alepha/cache": "0.6.0",
10
- "@alepha/cli": "0.6.0",
11
- "@alepha/core": "0.6.0",
12
- "@alepha/lock": "0.6.0",
13
- "@alepha/postgres": "0.6.0",
14
- "@alepha/protobuf": "0.6.0",
15
- "@alepha/queue": "0.6.0",
16
- "@alepha/react": "0.6.0",
17
- "@alepha/redis": "0.6.0",
18
- "@alepha/scheduler": "0.6.0",
19
- "@alepha/security": "0.6.0",
20
- "@alepha/server": "0.6.0",
21
- "@alepha/testing": "0.6.0",
22
- "@alepha/topic": "0.6.0",
23
- "@alepha/vite": "0.6.0"
9
+ "@alepha/cache": "0.6.2",
10
+ "@alepha/cli": "0.6.2",
11
+ "@alepha/core": "0.6.2",
12
+ "@alepha/lock": "0.6.2",
13
+ "@alepha/postgres": "0.6.2",
14
+ "@alepha/queue": "0.6.2",
15
+ "@alepha/react": "0.6.2",
16
+ "@alepha/redis": "0.6.2",
17
+ "@alepha/scheduler": "0.6.2",
18
+ "@alepha/security": "0.6.2",
19
+ "@alepha/server": "0.6.2",
20
+ "@alepha/testing": "0.6.2",
21
+ "@alepha/topic": "0.6.2",
22
+ "@alepha/vite": "0.6.2"
23
+ },
24
+ "peerDependencies": {
25
+ "@types/react": "^19",
26
+ "react": "^19"
27
+ },
28
+ "peerDependenciesMeta": {
29
+ "@types/react": {
30
+ "optional": true
31
+ },
32
+ "react": {
33
+ "optional": true
34
+ }
24
35
  },
25
36
  "devDependencies": {
26
- "pkgroll": "^2.12.1"
37
+ "@types/react": "^19",
38
+ "pkgroll": "^2.12.2",
39
+ "react": "^19"
27
40
  },
28
41
  "scripts": {
29
42
  "build": "pkgroll --clean-dist"
@@ -88,6 +101,11 @@
88
101
  "import": "./dist/security.js",
89
102
  "require": "./dist/security.cjs",
90
103
  "types": "./dist/security.d.ts"
104
+ },
105
+ "./server": {
106
+ "import": "./dist/server.js",
107
+ "require": "./dist/server.cjs",
108
+ "types": "./dist/server.d.ts"
91
109
  }
92
110
  }
93
111
  }
package/src/cache.ts DELETED
@@ -1 +0,0 @@
1
- export * from "@alepha/cache";
package/src/cli.ts DELETED
@@ -1 +0,0 @@
1
- export * from "@alepha/cli";
package/src/core.ts DELETED
@@ -1 +0,0 @@
1
- export * from "@alepha/core";
package/src/lock.ts DELETED
@@ -1 +0,0 @@
1
- export * from "@alepha/lock";
package/src/postgres.ts DELETED
@@ -1 +0,0 @@
1
- export * from "@alepha/postgres";
package/src/protobuf.ts DELETED
@@ -1 +0,0 @@
1
- export * from "@alepha/protobuf";
package/src/queue.ts DELETED
@@ -1 +0,0 @@
1
- export * from "@alepha/queue";
package/src/react.ts DELETED
@@ -1 +0,0 @@
1
- export * from "@alepha/react";
package/src/redis.ts DELETED
@@ -1 +0,0 @@
1
- export * from "@alepha/redis";
package/src/scheduler.ts DELETED
@@ -1 +0,0 @@
1
- export * from "@alepha/scheduler";
package/src/security.ts DELETED
@@ -1 +0,0 @@
1
- export * from "@alepha/security";
package/src/server.ts DELETED
@@ -1 +0,0 @@
1
- export * from "@alepha/server";
package/src/topic.ts DELETED
@@ -1 +0,0 @@
1
- export * from "@alepha/topic";
package/src/vite.ts DELETED
@@ -1 +0,0 @@
1
- export * from "@alepha/vite";