alepha 0.5.1 → 0.5.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/index.cjs +89 -0
- package/dist/index.d.ts +13 -0
- package/dist/index.js +12 -0
- package/dist/vite.cjs +12 -0
- package/dist/vite.d.ts +1 -0
- package/dist/vite.js +1 -0
- package/package.json +46 -37
- package/index.js +0 -12
- package/vite.js +0 -1
- /package/{index.d.ts → src/index.ts} +0 -0
- /package/{vite.d.ts → src/vite.ts} +0 -0
package/dist/index.cjs
ADDED
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var cache = require('@alepha/cache');
|
|
4
|
+
var core = require('@alepha/core');
|
|
5
|
+
var lock = require('@alepha/lock');
|
|
6
|
+
var postgres = require('@alepha/postgres');
|
|
7
|
+
var protobuf = require('@alepha/protobuf');
|
|
8
|
+
var queue = require('@alepha/queue');
|
|
9
|
+
var react = require('@alepha/react');
|
|
10
|
+
var redis = require('@alepha/redis');
|
|
11
|
+
var scheduler = require('@alepha/scheduler');
|
|
12
|
+
var security = require('@alepha/security');
|
|
13
|
+
var server = require('@alepha/server');
|
|
14
|
+
var topic = require('@alepha/topic');
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
Object.keys(cache).forEach(function (k) {
|
|
19
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
20
|
+
enumerable: true,
|
|
21
|
+
get: function () { return cache[k]; }
|
|
22
|
+
});
|
|
23
|
+
});
|
|
24
|
+
Object.keys(core).forEach(function (k) {
|
|
25
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
26
|
+
enumerable: true,
|
|
27
|
+
get: function () { return core[k]; }
|
|
28
|
+
});
|
|
29
|
+
});
|
|
30
|
+
Object.keys(lock).forEach(function (k) {
|
|
31
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
32
|
+
enumerable: true,
|
|
33
|
+
get: function () { return lock[k]; }
|
|
34
|
+
});
|
|
35
|
+
});
|
|
36
|
+
Object.keys(postgres).forEach(function (k) {
|
|
37
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
38
|
+
enumerable: true,
|
|
39
|
+
get: function () { return postgres[k]; }
|
|
40
|
+
});
|
|
41
|
+
});
|
|
42
|
+
Object.keys(protobuf).forEach(function (k) {
|
|
43
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
44
|
+
enumerable: true,
|
|
45
|
+
get: function () { return protobuf[k]; }
|
|
46
|
+
});
|
|
47
|
+
});
|
|
48
|
+
Object.keys(queue).forEach(function (k) {
|
|
49
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
50
|
+
enumerable: true,
|
|
51
|
+
get: function () { return queue[k]; }
|
|
52
|
+
});
|
|
53
|
+
});
|
|
54
|
+
Object.keys(react).forEach(function (k) {
|
|
55
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
56
|
+
enumerable: true,
|
|
57
|
+
get: function () { return react[k]; }
|
|
58
|
+
});
|
|
59
|
+
});
|
|
60
|
+
Object.keys(redis).forEach(function (k) {
|
|
61
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
62
|
+
enumerable: true,
|
|
63
|
+
get: function () { return redis[k]; }
|
|
64
|
+
});
|
|
65
|
+
});
|
|
66
|
+
Object.keys(scheduler).forEach(function (k) {
|
|
67
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
68
|
+
enumerable: true,
|
|
69
|
+
get: function () { return scheduler[k]; }
|
|
70
|
+
});
|
|
71
|
+
});
|
|
72
|
+
Object.keys(security).forEach(function (k) {
|
|
73
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
74
|
+
enumerable: true,
|
|
75
|
+
get: function () { return security[k]; }
|
|
76
|
+
});
|
|
77
|
+
});
|
|
78
|
+
Object.keys(server).forEach(function (k) {
|
|
79
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
80
|
+
enumerable: true,
|
|
81
|
+
get: function () { return server[k]; }
|
|
82
|
+
});
|
|
83
|
+
});
|
|
84
|
+
Object.keys(topic).forEach(function (k) {
|
|
85
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
86
|
+
enumerable: true,
|
|
87
|
+
get: function () { return topic[k]; }
|
|
88
|
+
});
|
|
89
|
+
});
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export * from '@alepha/cache';
|
|
2
|
+
export * from '@alepha/core';
|
|
3
|
+
export * from '@alepha/lock';
|
|
4
|
+
export * from '@alepha/postgres';
|
|
5
|
+
export * from '@alepha/protobuf';
|
|
6
|
+
export * from '@alepha/queue';
|
|
7
|
+
export * from '@alepha/react';
|
|
8
|
+
export * from '@alepha/redis';
|
|
9
|
+
export * from '@alepha/scheduler';
|
|
10
|
+
export * from '@alepha/security';
|
|
11
|
+
export * from '@alepha/server';
|
|
12
|
+
export * from '@alepha/topic';
|
|
13
|
+
import '@alepha/vite';
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export * from '@alepha/cache';
|
|
2
|
+
export * from '@alepha/core';
|
|
3
|
+
export * from '@alepha/lock';
|
|
4
|
+
export * from '@alepha/postgres';
|
|
5
|
+
export * from '@alepha/protobuf';
|
|
6
|
+
export * from '@alepha/queue';
|
|
7
|
+
export * from '@alepha/react';
|
|
8
|
+
export * from '@alepha/redis';
|
|
9
|
+
export * from '@alepha/scheduler';
|
|
10
|
+
export * from '@alepha/security';
|
|
11
|
+
export * from '@alepha/server';
|
|
12
|
+
export * from '@alepha/topic';
|
package/dist/vite.cjs
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var vite = require('@alepha/vite');
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
Object.keys(vite).forEach(function (k) {
|
|
8
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
9
|
+
enumerable: true,
|
|
10
|
+
get: function () { return vite[k]; }
|
|
11
|
+
});
|
|
12
|
+
});
|
package/dist/vite.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@alepha/vite';
|
package/dist/vite.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@alepha/vite';
|
package/package.json
CHANGED
|
@@ -1,39 +1,48 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
2
|
+
"name": "alepha",
|
|
3
|
+
"version": "0.5.2",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"main": "./dist/index.cjs",
|
|
7
|
+
"module": "./dist/index.js",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"dependencies": {
|
|
10
|
+
"@alepha/cache": "0.5.2",
|
|
11
|
+
"@alepha/core": "0.5.2",
|
|
12
|
+
"@alepha/lock": "0.5.2",
|
|
13
|
+
"@alepha/postgres": "0.5.2",
|
|
14
|
+
"@alepha/protobuf": "0.5.2",
|
|
15
|
+
"@alepha/queue": "0.5.2",
|
|
16
|
+
"@alepha/react": "0.5.2",
|
|
17
|
+
"@alepha/redis": "0.5.2",
|
|
18
|
+
"@alepha/scheduler": "0.5.2",
|
|
19
|
+
"@alepha/security": "0.5.2",
|
|
20
|
+
"@alepha/server": "0.5.2",
|
|
21
|
+
"@alepha/testing": "0.5.2",
|
|
22
|
+
"@alepha/topic": "0.5.2",
|
|
23
|
+
"@alepha/vite": "0.5.4"
|
|
24
|
+
},
|
|
25
|
+
"devDependencies": {
|
|
26
|
+
"pkgroll": "^2.12.1"
|
|
27
|
+
},
|
|
28
|
+
"scripts": {
|
|
29
|
+
"build": "pkgroll --clean-dist"
|
|
30
|
+
},
|
|
31
|
+
"exports": {
|
|
32
|
+
".": {
|
|
33
|
+
"default": "./dist/index.js",
|
|
34
|
+
"node": {
|
|
35
|
+
"require": "./dist/index.cjs",
|
|
36
|
+
"import": "./dist/index.js",
|
|
37
|
+
"module": "./dist/index.js",
|
|
38
|
+
"types": "./dist/index.d.ts"
|
|
39
|
+
}
|
|
40
|
+
},
|
|
41
|
+
"./vite": {
|
|
42
|
+
"require": "./dist/vite.cjs",
|
|
43
|
+
"import": "./dist/vite.js",
|
|
44
|
+
"module": "./dist/vite.js",
|
|
45
|
+
"types": "./dist/vite.d.ts"
|
|
46
|
+
}
|
|
47
|
+
}
|
|
39
48
|
}
|
package/index.js
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
export * from "@alepha/cache";
|
|
2
|
-
export * from "@alepha/core";
|
|
3
|
-
export * from "@alepha/lock";
|
|
4
|
-
export * from "@alepha/postgres";
|
|
5
|
-
export * from "@alepha/protobuf";
|
|
6
|
-
export * from "@alepha/queue";
|
|
7
|
-
export * from "@alepha/react";
|
|
8
|
-
export * from "@alepha/redis";
|
|
9
|
-
export * from "@alepha/scheduler";
|
|
10
|
-
export * from "@alepha/security";
|
|
11
|
-
export * from "@alepha/server";
|
|
12
|
-
export * from "@alepha/topic";
|
package/vite.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "@alepha/vite";
|
|
File without changes
|
|
File without changes
|