forklaunch 0.2.3 → 0.2.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/package.json +1 -6
- package/scripts/install.js +3 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "forklaunch",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.5",
|
|
4
4
|
"description": "Launch faster with forklaunch",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"cli",
|
|
@@ -16,12 +16,7 @@
|
|
|
16
16
|
"url": "https://github.com/forklaunch/forklaunch-js.git",
|
|
17
17
|
"directory": "cli"
|
|
18
18
|
},
|
|
19
|
-
"bin": {
|
|
20
|
-
"forklaunch": "./bin/forklaunch",
|
|
21
|
-
"fl": "./bin/fl"
|
|
22
|
-
},
|
|
23
19
|
"files": [
|
|
24
|
-
"bin/",
|
|
25
20
|
"scripts/",
|
|
26
21
|
"README.md",
|
|
27
22
|
"LICENSE"
|
package/scripts/install.js
CHANGED
|
@@ -388,7 +388,9 @@ async function main() {
|
|
|
388
388
|
}
|
|
389
389
|
|
|
390
390
|
await flushOutputStreams();
|
|
391
|
-
await waitForAsyncOperations();
|
|
391
|
+
// await waitForAsyncOperations();
|
|
392
|
+
|
|
393
|
+
process.exit(0);
|
|
392
394
|
} catch (error) {
|
|
393
395
|
console.error("\nDownload failed:", error.message);
|
|
394
396
|
console.error(
|