@abtnode/router-provider 1.7.2 → 1.7.5
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/nginx/index.js +2 -2
- package/package.json +8 -8
package/lib/nginx/index.js
CHANGED
|
@@ -853,7 +853,7 @@ NginxProvider.check = async ({ configDir = '' } = {}) => {
|
|
|
853
853
|
await provider.start();
|
|
854
854
|
await provider.stop();
|
|
855
855
|
|
|
856
|
-
fs.
|
|
856
|
+
fs.rmSync(tmpDir, { recursive: true });
|
|
857
857
|
|
|
858
858
|
return result;
|
|
859
859
|
};
|
|
@@ -878,7 +878,7 @@ NginxProvider.getUsablePorts = async () =>
|
|
|
878
878
|
await provider.start();
|
|
879
879
|
await provider.stop();
|
|
880
880
|
|
|
881
|
-
fs.
|
|
881
|
+
fs.rmSync(configDir, { recursive: true });
|
|
882
882
|
|
|
883
883
|
return true;
|
|
884
884
|
} catch (err) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abtnode/router-provider",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.5",
|
|
4
4
|
"description": "Routing engine implementations for abt node",
|
|
5
5
|
"author": "polunzh <polunzh@gmail.com>",
|
|
6
6
|
"homepage": "https://github.com/ArcBlock/blocklet-server#readme",
|
|
@@ -32,15 +32,15 @@
|
|
|
32
32
|
"url": "https://github.com/ArcBlock/blocklet-server/issues"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@abtnode/constant": "1.7.
|
|
36
|
-
"@abtnode/logger": "1.7.
|
|
37
|
-
"@abtnode/router-templates": "1.7.
|
|
38
|
-
"@abtnode/util": "1.7.
|
|
35
|
+
"@abtnode/constant": "1.7.5",
|
|
36
|
+
"@abtnode/logger": "1.7.5",
|
|
37
|
+
"@abtnode/router-templates": "1.7.5",
|
|
38
|
+
"@abtnode/util": "1.7.5",
|
|
39
39
|
"axios": "^0.25.0",
|
|
40
40
|
"debug": "^4.3.3",
|
|
41
41
|
"find-process": "^1.4.3",
|
|
42
42
|
"fkill": "^7.0.1",
|
|
43
|
-
"fs-extra": "^10.0.
|
|
43
|
+
"fs-extra": "^10.0.1",
|
|
44
44
|
"get-port": "^5.1.1",
|
|
45
45
|
"http-proxy": "^1.18.1",
|
|
46
46
|
"is-valid-domain": "^0.1.6",
|
|
@@ -59,8 +59,8 @@
|
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
61
61
|
"bluebird": "^3.7.2",
|
|
62
|
-
"fs-extra": "^10.0.
|
|
62
|
+
"fs-extra": "^10.0.1",
|
|
63
63
|
"needle": "^3.0.0"
|
|
64
64
|
},
|
|
65
|
-
"gitHead": "
|
|
65
|
+
"gitHead": "b17d83773e5a4c06bae390fc70398d49d6dd86b3"
|
|
66
66
|
}
|