@catladder/pipeline 0.0.7 → 0.0.8
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.
|
@@ -8,7 +8,7 @@ export declare type BuildConfigNode = {
|
|
|
8
8
|
export declare type BuildConfigNodeStatic = {
|
|
9
9
|
type: "node-static";
|
|
10
10
|
buildCommand?: string;
|
|
11
|
-
startCommand
|
|
11
|
+
startCommand?: never;
|
|
12
12
|
};
|
|
13
13
|
export declare type BuildConfig = BuildConfigNode | BuildConfigNodeStatic;
|
|
14
14
|
export declare const isOfType: <T extends "node" | "node-static">(t: BuildConfig, type: T) => t is Extract<BuildConfigNode, {
|
package/package.json
CHANGED