fyn 1.1.28 → 1.1.29
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/fyn.js +10 -1
- package/package.json +3 -2
package/dist/fyn.js
CHANGED
|
@@ -1599,7 +1599,16 @@ const commands = {
|
|
|
1599
1599
|
alias: ["rum", "r"],
|
|
1600
1600
|
usage: "$0 $1 <command> [-- <args>...]",
|
|
1601
1601
|
exec: async (argv, parsed) => {
|
|
1602
|
-
|
|
1602
|
+
try {
|
|
1603
|
+
return await new FynCli(await pickOptions(argv, parsed.nixClap, !argv.opts.list)).run(argv);
|
|
1604
|
+
} catch (err) {
|
|
1605
|
+
if (err.errno !== undefined) {
|
|
1606
|
+
process.exit(err.errno);
|
|
1607
|
+
} else {
|
|
1608
|
+
logger.error("fyn run caught error without errno", err);
|
|
1609
|
+
process.exit(1);
|
|
1610
|
+
}
|
|
1611
|
+
}
|
|
1603
1612
|
},
|
|
1604
1613
|
options: {
|
|
1605
1614
|
list: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fyn",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.29",
|
|
4
4
|
"description": "The package manager for fynpo, a zero setup monorepo manager",
|
|
5
5
|
"main": "./bin/fyn.js",
|
|
6
6
|
"homepage": "https://jchip.github.io/fynpo/",
|
|
@@ -15,7 +15,8 @@
|
|
|
15
15
|
"ci:check": "xrun xarc/check",
|
|
16
16
|
"coveralls": "cat coverage/lcov.info | coveralls",
|
|
17
17
|
"prepublishOnly": "xrun build",
|
|
18
|
-
"postpack": "publish-util-postpack"
|
|
18
|
+
"postpack": "publish-util-postpack",
|
|
19
|
+
"blah": "exit 5"
|
|
19
20
|
},
|
|
20
21
|
"bin": {
|
|
21
22
|
"0-npx-please-run-this-for-fyn": "./bin/fyn.js",
|