@blocklet/sdk 1.16.32 → 1.16.33-beta-20241001-015316-119b726d
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/lib/config.js +1 -1
- package/lib/version.d.ts +1 -1
- package/lib/version.js +1 -1
- package/package.json +7 -7
package/lib/config.js
CHANGED
|
@@ -65,7 +65,7 @@ if (appDataDir) {
|
|
|
65
65
|
if (fs_1.default.existsSync(configFile)) {
|
|
66
66
|
let configRaw = fs_1.default.readFileSync(configFile).toString();
|
|
67
67
|
if (process.env.DOCKER_HOST_SERVER_DIR && process.env.DOCKER_CONTAINER_SERVER_DIR) {
|
|
68
|
-
configRaw = configRaw.replace(process.env.DOCKER_HOST_SERVER_DIR, process.env.DOCKER_CONTAINER_SERVER_DIR);
|
|
68
|
+
configRaw = configRaw.replace(new RegExp(process.env.DOCKER_HOST_SERVER_DIR, 'g'), process.env.DOCKER_CONTAINER_SERVER_DIR);
|
|
69
69
|
}
|
|
70
70
|
const config = JSON.parse(configRaw);
|
|
71
71
|
appEnvFromDisk = config.env || {};
|
package/lib/version.d.ts
CHANGED
package/lib/version.js
CHANGED
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "1.16.
|
|
6
|
+
"version": "1.16.33-beta-20241001-015316-119b726d",
|
|
7
7
|
"description": "graphql client to read/write data on abt node",
|
|
8
8
|
"main": "lib/index.js",
|
|
9
9
|
"typings": "lib/index.d.ts",
|
|
@@ -27,15 +27,15 @@
|
|
|
27
27
|
"author": "linchen1987 <linchen.1987@foxmail.com> (http://github.com/linchen1987)",
|
|
28
28
|
"license": "Apache-2.0",
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@abtnode/client": "1.16.
|
|
31
|
-
"@abtnode/constant": "1.16.
|
|
30
|
+
"@abtnode/client": "1.16.33-beta-20241001-015316-119b726d",
|
|
31
|
+
"@abtnode/constant": "1.16.33-beta-20241001-015316-119b726d",
|
|
32
32
|
"@arcblock/did": "1.18.135",
|
|
33
33
|
"@arcblock/did-auth": "1.18.135",
|
|
34
34
|
"@arcblock/jwt": "1.18.135",
|
|
35
35
|
"@arcblock/ws": "1.18.135",
|
|
36
|
-
"@blocklet/constant": "1.16.
|
|
37
|
-
"@blocklet/env": "1.16.
|
|
38
|
-
"@blocklet/meta": "1.16.
|
|
36
|
+
"@blocklet/constant": "1.16.33-beta-20241001-015316-119b726d",
|
|
37
|
+
"@blocklet/env": "1.16.33-beta-20241001-015316-119b726d",
|
|
38
|
+
"@blocklet/meta": "1.16.33-beta-20241001-015316-119b726d",
|
|
39
39
|
"@did-connect/authenticator": "^2.2.4",
|
|
40
40
|
"@did-connect/handler": "^2.2.4",
|
|
41
41
|
"@nedb/core": "^2.1.5",
|
|
@@ -76,5 +76,5 @@
|
|
|
76
76
|
"ts-node": "^10.9.1",
|
|
77
77
|
"typescript": "^5.0.4"
|
|
78
78
|
},
|
|
79
|
-
"gitHead": "
|
|
79
|
+
"gitHead": "5cac4c3579c14ebae18810b1f27ecbc63603088d"
|
|
80
80
|
}
|