@better-update/cli 0.18.4 → 0.19.0
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/index.mjs +4 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/index.mjs
CHANGED
|
@@ -32,7 +32,7 @@ var __require = /* @__PURE__ */ createRequire(import.meta.url);
|
|
|
32
32
|
|
|
33
33
|
//#endregion
|
|
34
34
|
//#region package.json
|
|
35
|
-
var version = "0.
|
|
35
|
+
var version = "0.19.0";
|
|
36
36
|
|
|
37
37
|
//#endregion
|
|
38
38
|
//#region src/lib/interactive-mode.ts
|
|
@@ -803,6 +803,7 @@ const CreateBuildCommonFields = {
|
|
|
803
803
|
bundleId: Schema.optional(Schema.String),
|
|
804
804
|
gitRef: Schema.optional(Schema.String),
|
|
805
805
|
gitCommit: Schema.optional(Schema.String),
|
|
806
|
+
gitDirty: Schema.optional(Schema.Boolean),
|
|
806
807
|
message: Schema.optional(Schema.String),
|
|
807
808
|
metadata: Schema.optional(Schema.Record({
|
|
808
809
|
key: Schema.String,
|
|
@@ -824,6 +825,7 @@ var Build = class extends Schema.Class("Build")({
|
|
|
824
825
|
bundleId: Schema.NullOr(Schema.String),
|
|
825
826
|
gitRef: Schema.NullOr(Schema.String),
|
|
826
827
|
gitCommit: Schema.NullOr(Schema.String),
|
|
828
|
+
gitDirty: Schema.Boolean,
|
|
827
829
|
message: Schema.NullOr(Schema.String),
|
|
828
830
|
metadataJson: Schema.String,
|
|
829
831
|
fingerprintHash: Schema.NullOr(Schema.String),
|
|
@@ -5985,6 +5987,7 @@ const buildReserveCommon = (input) => ({
|
|
|
5985
5987
|
...input.buildNumber === void 0 ? {} : { buildNumber: input.buildNumber },
|
|
5986
5988
|
...input.gitContext.ref === void 0 ? {} : { gitRef: input.gitContext.ref },
|
|
5987
5989
|
...input.gitContext.commit === void 0 ? {} : { gitCommit: input.gitContext.commit },
|
|
5990
|
+
gitDirty: input.gitContext.dirty,
|
|
5988
5991
|
...input.message === void 0 ? {} : { message: input.message },
|
|
5989
5992
|
...input.fingerprintHash === void 0 ? {} : { fingerprintHash: input.fingerprintHash }
|
|
5990
5993
|
});
|