@powerhousedao/shared 6.0.0-dev.147 → 6.0.0-dev.149
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/clis/index.d.mts +1 -1
- package/dist/clis/index.mjs +2 -2
- package/dist/clis/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/clis/index.d.mts
CHANGED
|
@@ -908,7 +908,7 @@ declare const serviceArgs: {
|
|
|
908
908
|
parse(context: cmd_ts_dist_cjs_argparser_js0.ParseContext): Promise<cmd_ts_dist_cjs_argparser_js0.ParsingResult<boolean | undefined>>;
|
|
909
909
|
} & cmd_ts_dist_cjs_helpdoc_js0.ProvidesHelp & cmd_ts_dist_cjs_argparser_js0.Register & Partial<cmd_ts_dist_cjs_helpdoc_js0.Descriptive>;
|
|
910
910
|
action: Partial<cmd_ts_dist_cjs_argparser_js0.Register> & {
|
|
911
|
-
parse(context: cmd_ts_dist_cjs_argparser_js0.ParseContext): Promise<cmd_ts_dist_cjs_argparser_js0.ParsingResult<"
|
|
911
|
+
parse(context: cmd_ts_dist_cjs_argparser_js0.ParseContext): Promise<cmd_ts_dist_cjs_argparser_js0.ParsingResult<"start" | "stop" | "status" | "setup" | "restart" | undefined>>;
|
|
912
912
|
} & cmd_ts_dist_cjs_helpdoc_js0.ProvidesHelp & Partial<cmd_ts_dist_cjs_helpdoc_js0.Descriptive>;
|
|
913
913
|
};
|
|
914
914
|
//#endregion
|
package/dist/clis/index.mjs
CHANGED
|
@@ -872,7 +872,7 @@ const entry = [
|
|
|
872
872
|
"processors/*/index.ts"
|
|
873
873
|
];
|
|
874
874
|
const alwaysBundle = ["**"];
|
|
875
|
-
const
|
|
875
|
+
const nodeNeverBundle = [
|
|
876
876
|
"@powerhousedao/connect",
|
|
877
877
|
"@powerhousedao/ph-cli",
|
|
878
878
|
"react",
|
|
@@ -891,7 +891,7 @@ const browserNeverBundle = [
|
|
|
891
891
|
"@types/react",
|
|
892
892
|
"@types/react-dom"
|
|
893
893
|
];
|
|
894
|
-
const
|
|
894
|
+
const browserNeverBundle = [...nodeNeverBundle, "@powerhousedao/reactor-api"];
|
|
895
895
|
const copy = [{
|
|
896
896
|
from: "powerhouse.manifest.json",
|
|
897
897
|
to: "dist"
|