@jayfong/x-server 1.14.1 → 1.15.0
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/CHANGELOG.md +7 -0
- package/lib/_cjs/cli/build_util.js +5 -2
- package/lib/_cjs/cli/env_util.js +10 -1
- package/lib/_cjs/services/captcha.js +1 -3
- package/lib/_cjs/x.js +3 -1
- package/lib/cli/build_util.js +5 -2
- package/lib/cli/env_util.js +10 -1
- package/lib/services/captcha.js +1 -3
- package/lib/x.d.ts +2 -0
- package/lib/x.js +3 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
## [1.15.0](https://github.com/jfWorks/x-server/compare/v1.14.1...v1.15.0) (2022-04-26)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* x.env ([e39771f](https://github.com/jfWorks/x-server/commit/e39771f998f4b952bda528105fb18b6895e0ce81))
|
|
11
|
+
|
|
5
12
|
### [1.14.1](https://github.com/jfWorks/x-server/compare/v1.14.0...v1.14.1) (2022-04-26)
|
|
6
13
|
|
|
7
14
|
|
|
@@ -23,7 +23,7 @@ var _vtils = require("vtils");
|
|
|
23
23
|
|
|
24
24
|
class BuildUtil {
|
|
25
25
|
static async build(options) {
|
|
26
|
-
var _options$minify
|
|
26
|
+
var _options$minify;
|
|
27
27
|
|
|
28
28
|
const mainFile = _nodePath.default.join(options.cwd, 'src/main.ts');
|
|
29
29
|
|
|
@@ -75,7 +75,10 @@ class BuildUtil {
|
|
|
75
75
|
sourcemap: false,
|
|
76
76
|
treeShaking: true,
|
|
77
77
|
banner: {
|
|
78
|
-
js:
|
|
78
|
+
js: `;process.env.X_SERVER_ENVS=${JSON.stringify((options.inlineEnvs || []).reduce((res, item) => {
|
|
79
|
+
res[item.key] = item.value;
|
|
80
|
+
return res;
|
|
81
|
+
}, {}))}};`
|
|
79
82
|
},
|
|
80
83
|
plugins: [{
|
|
81
84
|
name: 'extract-assets',
|
package/lib/_cjs/cli/env_util.js
CHANGED
|
@@ -105,9 +105,18 @@ class EnvUtil {
|
|
|
105
105
|
}
|
|
106
106
|
|
|
107
107
|
static async importFile(options) {
|
|
108
|
-
|
|
108
|
+
const envs = await EnvUtil.parseFile(options);
|
|
109
|
+
const envsObj = {};
|
|
110
|
+
|
|
111
|
+
for (const env of envs) {
|
|
112
|
+
envsObj[env.key] = env.value;
|
|
109
113
|
process.env[env.key] = env.value;
|
|
110
114
|
}
|
|
115
|
+
|
|
116
|
+
process.env.X_SERVER_ENVS = JSON.stringify({ // @ts-ignore
|
|
117
|
+
...JSON.parse(process.env.X_SERVER_ENVS || '{}'),
|
|
118
|
+
...envsObj
|
|
119
|
+
});
|
|
111
120
|
}
|
|
112
121
|
|
|
113
122
|
static makeTypes(envs) {
|
|
@@ -41,9 +41,7 @@ class CaptchaService {
|
|
|
41
41
|
}
|
|
42
42
|
|
|
43
43
|
async verify(options) {
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
if (((_options$code = options.code) == null ? void 0 : _options$code.length) !== this.options.size) {
|
|
44
|
+
if (options.code.length !== this.options.size) {
|
|
47
45
|
return false;
|
|
48
46
|
}
|
|
49
47
|
|
package/lib/_cjs/x.js
CHANGED
|
@@ -5,8 +5,10 @@ exports.x = void 0;
|
|
|
5
5
|
|
|
6
6
|
var _dispose = require("./services/dispose");
|
|
7
7
|
|
|
8
|
+
const env = JSON.parse(process.env.X_SERVER_ENVS || '{}');
|
|
8
9
|
const x = {
|
|
9
|
-
appId:
|
|
10
|
+
appId: env.APP_ID,
|
|
11
|
+
env: env,
|
|
10
12
|
register: (...services) => {
|
|
11
13
|
for (const service of services) {
|
|
12
14
|
// @ts-ignore
|
package/lib/cli/build_util.js
CHANGED
|
@@ -8,7 +8,7 @@ import path from 'node:path';
|
|
|
8
8
|
import { dedent, uniq } from 'vtils';
|
|
9
9
|
export class BuildUtil {
|
|
10
10
|
static async build(options) {
|
|
11
|
-
var _options$minify
|
|
11
|
+
var _options$minify;
|
|
12
12
|
|
|
13
13
|
const mainFile = path.join(options.cwd, 'src/main.ts');
|
|
14
14
|
const pkgFile = path.join(options.cwd, 'package.json');
|
|
@@ -51,7 +51,10 @@ export class BuildUtil {
|
|
|
51
51
|
sourcemap: false,
|
|
52
52
|
treeShaking: true,
|
|
53
53
|
banner: {
|
|
54
|
-
js:
|
|
54
|
+
js: `;process.env.X_SERVER_ENVS=${JSON.stringify((options.inlineEnvs || []).reduce((res, item) => {
|
|
55
|
+
res[item.key] = item.value;
|
|
56
|
+
return res;
|
|
57
|
+
}, {}))}};`
|
|
55
58
|
},
|
|
56
59
|
plugins: [{
|
|
57
60
|
name: 'extract-assets',
|
package/lib/cli/env_util.js
CHANGED
|
@@ -95,9 +95,18 @@ export class EnvUtil {
|
|
|
95
95
|
}
|
|
96
96
|
|
|
97
97
|
static async importFile(options) {
|
|
98
|
-
|
|
98
|
+
const envs = await EnvUtil.parseFile(options);
|
|
99
|
+
const envsObj = {};
|
|
100
|
+
|
|
101
|
+
for (const env of envs) {
|
|
102
|
+
envsObj[env.key] = env.value;
|
|
99
103
|
process.env[env.key] = env.value;
|
|
100
104
|
}
|
|
105
|
+
|
|
106
|
+
process.env.X_SERVER_ENVS = JSON.stringify({ // @ts-ignore
|
|
107
|
+
...JSON.parse(process.env.X_SERVER_ENVS || '{}'),
|
|
108
|
+
...envsObj
|
|
109
|
+
});
|
|
101
110
|
}
|
|
102
111
|
|
|
103
112
|
static makeTypes(envs) {
|
package/lib/services/captcha.js
CHANGED
|
@@ -31,9 +31,7 @@ export class CaptchaService {
|
|
|
31
31
|
}
|
|
32
32
|
|
|
33
33
|
async verify(options) {
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
if (((_options$code = options.code) == null ? void 0 : _options$code.length) !== this.options.size) {
|
|
34
|
+
if (options.code.length !== this.options.size) {
|
|
37
35
|
return false;
|
|
38
36
|
}
|
|
39
37
|
|
package/lib/x.d.ts
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
1
|
+
/// <reference types="node" />
|
|
1
2
|
import { BaseService } from './services/base';
|
|
2
3
|
import './services/dispose';
|
|
3
4
|
export interface X {
|
|
4
5
|
readonly appId: string;
|
|
6
|
+
readonly env: NodeJS.ProcessEnv;
|
|
5
7
|
readonly register: (...services: BaseService[]) => void;
|
|
6
8
|
}
|
|
7
9
|
export declare const x: X;
|
package/lib/x.js
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import { DisposeService } from "./services/dispose";
|
|
2
|
+
const env = JSON.parse(process.env.X_SERVER_ENVS || '{}');
|
|
2
3
|
export const x = {
|
|
3
|
-
appId:
|
|
4
|
+
appId: env.APP_ID,
|
|
5
|
+
env: env,
|
|
4
6
|
register: (...services) => {
|
|
5
7
|
for (const service of services) {
|
|
6
8
|
// @ts-ignore
|