You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"Unable to determine the CLI binary name. Please specify the `bin` option in your Shell Shock configuration or ensure that the `name` field is set in your package.json."
105
+
);
106
+
}
92
107
93
-
if(!isSetObject(context.packageJson.bin)){
94
-
thrownewError(
95
-
"Unable to determine the CLI binary name. Please specify the `bin` option in your Shell Shock configuration or ensure that the `name` field is set in your package.json."
* A set of global command options to apply to each command.
67
68
*
@@ -110,7 +111,7 @@ type BaseOptions = Partial<BuildOptions> & {
110
111
* This URL can be used in various displays of the user interface and documentation to provide users with a reference for the application. It can also be used by plugins to link to the documentation in relevant contexts. If the token `{command}` is included in the URL, it will be replaced with the full command path to provide links to command specific documentation. For example, `myapp command subcommand` will be translated to `{reference}/command/subcommand`.
111
112
*/
112
113
reference?: ReferenceOptions|string;
113
-
};
114
+
}
114
115
115
116
/**
116
117
* The plugin options for Shell Shock.
@@ -134,14 +135,19 @@ export type OutputConfig = Pick<
134
135
* The user configuration options for Shell Shock.
135
136
*/
136
137
exporttypeUserConfig=BaseOptions&
137
-
Partial<NodeJsPluginUserConfig>&
138
-
Pick<NodeJsPluginUserConfig,"root">&{
138
+
RequiredKeys<BuildOptions,"root"|"name">&{
139
139
/**
140
140
* Configuration for the output of the build process
141
141
*/
142
142
output?: OutputConfig;
143
143
};
144
144
145
+
exporttypeEngineOptions=Omit<
146
+
PowerlinesEngineOptions,
147
+
"root"|"name"|"framework"
148
+
>&
149
+
UserConfig;
150
+
145
151
/**
146
152
* The resolved configuration options for Shell Shock.
0 commit comments