@vc-shell/release-config 1.2.4-beta.2 → 1.2.4-beta.3

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.
@@ -1,40 +1,40 @@
1
- import G from "prompts";
2
- import { parse as A, valid as E } from "semver";
3
- import { readFileSync as P, writeFileSync as V, existsSync as j } from "node:fs";
1
+ import P from "prompts";
2
+ import { parse as O, valid as x } from "semver";
3
+ import { readFileSync as V, writeFileSync as A, existsSync as E } from "node:fs";
4
4
  import S from "node:path";
5
- import n from "chalk";
6
- import O from "mri";
7
- import { argv as H } from "node:process";
8
- import { sync as m } from "cross-spawn";
9
- import { g as K, a as Q } from "./generate-changelogs-_wYT4v6U.js";
10
- const C = O(H.slice(2)), I = !!C.dry;
11
- I && (console.log(n.inverse(n.yellow(" DRY RUN "))), console.log());
12
- function N(s) {
13
- const g = S.resolve(s), l = S.resolve(g, "package.json");
14
- return { pkg: JSON.parse(P(l, "utf-8")), pkgDir: g, pkgPath: l };
5
+ import e from "chalk";
6
+ import H from "mri";
7
+ import { argv as I } from "node:process";
8
+ import { sync as y } from "cross-spawn";
9
+ import { g as ee, a as te } from "./generate-changelogs-_wYT4v6U.js";
10
+ const k = H(I.slice(2)), L = !!k.dry;
11
+ L && (console.log(e.inverse(e.yellow(" DRY RUN "))), console.log());
12
+ function C(s) {
13
+ const u = S.resolve(s), p = S.resolve(u, "package.json");
14
+ return { pkg: JSON.parse(V(p, "utf-8")), pkgDir: u, pkgPath: p };
15
15
  }
16
- const z = async ({
16
+ const X = async ({
17
17
  packages: s,
18
- bumpVersion: g,
19
- generateChangelog: l,
18
+ bumpVersion: u,
19
+ generateChangelog: p,
20
20
  toTag: o,
21
- customHooks: d
21
+ customHooks: v
22
22
  }) => {
23
23
  if (s.length === 0)
24
24
  throw new Error("No packages to release");
25
- const r = !!C.dry;
26
- r && console.log(n.yellow(`
25
+ const r = !!k.dry;
26
+ r && console.log(e.yellow(`
27
27
  ⚠️ DRY RUN MODE - No git operations will be performed
28
28
  `));
29
- const { pkg: k } = N(s.find((h) => h !== ".") || s[0]), f = k.version.split(".").slice(0, 2).join("."), u = m("git", ["describe", "--tags", "--abbrev=0", "--match", `v${f}.*`], {
29
+ const { pkg: N } = C(s.find((l) => l !== ".") || s[0]), m = N.version.split(".").slice(0, 2).join("."), h = y("git", ["describe", "--tags", "--abbrev=0", "--match", `v${m}.*`], {
30
30
  stdio: "pipe",
31
31
  encoding: "utf-8"
32
32
  });
33
- let v = null;
34
- u.status === 0 && u.stdout ? (v = u.stdout.toString().trim(), console.log(n.gray(`ℹ️ Using ${v} as reference point for changes
35
- `))) : console.log(n.yellow(`⚠️ No matching tag found for v${f}.*, Lerna will use default behavior
33
+ let w = null;
34
+ h.status === 0 && h.stdout ? (w = h.stdout.toString().trim(), console.log(e.gray(`ℹ️ Using ${w} as reference point for changes
35
+ `))) : console.log(e.yellow(`⚠️ No matching tag found for v${m}.*, Lerna will use default behavior
36
36
  `));
37
- const { releaseType: t } = await G({
37
+ const { releaseType: n } = await P({
38
38
  type: "select",
39
39
  name: "releaseType",
40
40
  message: "Select release type",
@@ -45,123 +45,163 @@ const z = async ({
45
45
  { title: "Custom version", value: "custom" }
46
46
  ]
47
47
  });
48
- if (!t) {
49
- console.log(n.yellow(`
48
+ if (!n) {
49
+ console.log(e.yellow(`
50
50
  Release cancelled
51
51
  `));
52
52
  return;
53
53
  }
54
- const e = ["lerna", "version"];
55
- if (e.push("--no-changelog"), t === "auto")
56
- e.push("--conventional-commits");
57
- else if (t === "prerelease") {
58
- const { pkg: h } = N(s[0]), w = A(h.version), c = w && w.prerelease.length > 0, y = c ? w.prerelease[0] : null, { preid: R } = await G({
54
+ const t = ["lerna", "version"];
55
+ if (n === "auto")
56
+ t.push("--conventional-commits");
57
+ else if (n === "prerelease") {
58
+ const { pkg: l } = C(s[0]), c = O(l.version), g = c && c.prerelease.length > 0, d = g ? c.prerelease[0] : null, { preid: R } = await P({
59
59
  type: "select",
60
60
  name: "preid",
61
61
  message: "Select prerelease identifier",
62
62
  choices: [
63
63
  {
64
- title: c && y === "alpha" ? "alpha (continue)" : "alpha",
64
+ title: g && d === "alpha" ? "alpha (continue)" : "alpha",
65
65
  value: "alpha"
66
66
  },
67
67
  {
68
- title: c && y === "beta" ? "beta (continue)" : "beta",
68
+ title: g && d === "beta" ? "beta (continue)" : "beta",
69
69
  value: "beta"
70
70
  },
71
- { title: c && y === "rc" ? "rc (continue)" : "rc", value: "rc" }
71
+ { title: g && d === "rc" ? "rc (continue)" : "rc", value: "rc" }
72
72
  ]
73
73
  });
74
74
  if (!R) {
75
- console.log(n.yellow(`
75
+ console.log(e.yellow(`
76
76
  Release cancelled
77
77
  `));
78
78
  return;
79
79
  }
80
- c && y === R ? e.push("prerelease") : e.push("prerelease", "--preid", R), C.tag || (C.tag = R);
81
- } else if (t === "graduate")
82
- e.push("--conventional-graduate");
83
- else if (t === "custom") {
84
- const { pkg: h } = N(s[0]), { customVersion: w } = await G({
80
+ g && d === R ? t.push("prerelease") : t.push("prerelease", "--preid", R), k.tag || (k.tag = R);
81
+ } else if (n === "graduate")
82
+ t.push("--conventional-graduate");
83
+ else if (n === "custom") {
84
+ const { pkg: l } = C(s[0]), { customVersion: c } = await P({
85
85
  type: "text",
86
86
  name: "customVersion",
87
87
  message: "Enter custom version",
88
- initial: h.version,
89
- validate: (y) => E(y) ? !0 : "Invalid semver version"
88
+ initial: l.version,
89
+ validate: (d) => x(d) ? !0 : "Invalid semver version"
90
90
  });
91
- if (!w) {
92
- console.log(n.yellow(`
91
+ if (!c) {
92
+ console.log(e.yellow(`
93
93
  Release cancelled
94
94
  `));
95
95
  return;
96
96
  }
97
- e.push(w);
98
- const c = A(w);
99
- if (c && c.prerelease.length > 0 && !C.tag) {
100
- const y = c.prerelease[0];
101
- typeof y == "string" && (C.tag = y);
97
+ t.push(c);
98
+ const g = O(c);
99
+ if (g && g.prerelease.length > 0 && !k.tag) {
100
+ const d = g.prerelease[0];
101
+ typeof d == "string" && (k.tag = d);
102
102
  }
103
103
  }
104
- const { yes: a } = await G({
104
+ const { yes: a } = await P({
105
105
  type: "confirm",
106
106
  name: "yes",
107
107
  message: "Ready to release. Continue?"
108
108
  });
109
109
  if (!a) {
110
- console.log(n.yellow(`
110
+ console.log(e.yellow(`
111
111
  Release cancelled
112
112
  `));
113
113
  return;
114
114
  }
115
- r ? e.push("--no-git-tag-version", "--no-push") : e.push("--no-push"), C.force && (e.push("--force-publish"), console.log(n.yellow(`
115
+ r ? t.push("--no-git-tag-version", "--no-push") : t.push("--no-push"), k.force && (t.push("--force-publish"), console.log(e.yellow(`
116
116
  ⚠️ Force publish mode - all packages will be versioned
117
- `))), console.log(n.cyan(`
118
- Running: npx ${e.join(" ")}
117
+ `)));
118
+ const i = {};
119
+ for (const l of s) {
120
+ if (l === ".") continue;
121
+ const { pkg: c } = C(l);
122
+ i[l] = c.version;
123
+ }
124
+ console.log(e.cyan(`
125
+ Running: npx ${t.join(" ")}
119
126
  `));
120
- const i = m("npx", e, { stdio: "inherit" });
121
- if (i.status !== 0 && (console.error(n.red(`
127
+ const b = y("npx", t, { stdio: "inherit" });
128
+ b.status !== 0 && (console.error(e.red(`
122
129
  ❌ Release process failed
123
- `)), process.exit(i.status || 1)), await $(s), d) {
124
- console.log(n.cyan(`
130
+ `)), process.exit(b.status || 1));
131
+ let G = !1;
132
+ for (const l of s) {
133
+ if (l === ".") continue;
134
+ const { pkg: c } = C(l);
135
+ if (c.version !== i[l]) {
136
+ G = !0;
137
+ break;
138
+ }
139
+ }
140
+ if (!G) {
141
+ console.log(e.yellow(`
142
+ ⚠️ No packages were versioned. Nothing to release.
143
+ `));
144
+ return;
145
+ }
146
+ if (await $(s), v) {
147
+ console.log(e.cyan(`
125
148
  Running post-version hooks...
126
149
  `));
127
- const { pkg: h } = N(s[0] === "." ? s[1] : s[0]);
128
- await d(h.version);
150
+ const { pkg: l } = C(s[0] === "." ? s[1] : s[0]);
151
+ await v(l.version);
129
152
  }
130
- console.log(n.cyan(`
153
+ console.log(e.cyan(`
131
154
  Updating yarn.lock with new package versions...
132
155
  `));
133
- const b = m("yarn", ["install"], { stdio: "inherit" });
134
- if (b.status !== 0 && (console.error(n.red(`
156
+ const j = y("yarn", ["install"], { stdio: "inherit" });
157
+ if (j.status !== 0 && (console.error(e.red(`
135
158
  ❌ Failed to update yarn.lock
136
- `)), process.exit(b.status || 1)), await L(s), await D(s), !r && m("git", ["status", "--porcelain"], { stdio: "pipe" }).stdout?.toString().trim()) {
137
- const c = m("git", ["describe", "--tags", "--abbrev=0"], { stdio: "pipe" }).stdout?.toString().trim() || "HEAD";
138
- m("git", ["add", "-A"], { stdio: "inherit" }), m("git", ["commit", "--amend", "--no-edit", "--no-verify"], { stdio: "inherit" }), m("git", ["tag", "-f", c], { stdio: "inherit" }), console.log(n.cyan(`
159
+ `)), process.exit(j.status || 1)), await T(s), await F(s), !r && y("git", ["status", "--porcelain"], { stdio: "pipe" }).stdout?.toString().trim()) {
160
+ const c = y("git", ["describe", "--tags", "--abbrev=0"], { stdio: "pipe" });
161
+ (c.status !== 0 || !c.stdout?.toString().trim()) && (console.error(e.red(`
162
+ ❌ Could not determine the git tag created by lerna
163
+ `)), process.exit(1));
164
+ const g = c.stdout.toString().trim();
165
+ y("git", ["add", "-A"], { stdio: "inherit" }).status !== 0 && (console.error(e.red(`
166
+ ❌ Failed to stage changes
167
+ `)), process.exit(1)), y("git", ["commit", "--amend", "--no-edit", "--no-verify"], { stdio: "inherit" }).status !== 0 && (console.error(e.red(`
168
+ ❌ Failed to amend commit
169
+ `)), process.exit(1)), y("git", ["tag", "-f", "-a", g, "-m", g], { stdio: "inherit" }).status !== 0 && (console.error(e.red(`
170
+ ❌ Failed to recreate tag
171
+ `)), process.exit(1)), console.log(e.cyan(`
139
172
  Pushing changes to remote...
140
- `)), m("git", ["push", "origin", "HEAD", "--force-with-lease"], { stdio: "inherit" }), m("git", ["push", "origin", c, "--force"], { stdio: "inherit" }), console.log(n.green(`
173
+ `)), y("git", ["push", "origin", "HEAD", "--force-with-lease"], { stdio: "inherit" }).status !== 0 && (console.error(e.red(`
174
+ ❌ Failed to push commit
175
+ `)), process.exit(1)), y("git", ["push", "origin", g, "--force"], { stdio: "inherit" }).status !== 0 && (console.error(e.red(`
176
+ ❌ Failed to push tag
177
+ `)), process.exit(1)), console.log(e.green(`
141
178
  ✅ Updated changelogs, package.json, and pushed to remote
142
179
  `));
143
180
  }
144
- r ? (console.log(n.yellow(`
181
+ r ? (console.log(e.yellow(`
145
182
  ✅ Dry run completed successfully!
146
- `)), console.log(n.cyan("Changes made:")), console.log(n.cyan(" - Updated package versions")), console.log(n.cyan(" - Generated/updated CHANGELOG.md files")), console.log(n.cyan(" - npmTag will be determined from git tag in CI")), console.log(n.cyan(` - Updated yarn.lock with new package versions
147
- `)), console.log(n.yellow("No git operations performed. Review changes with:")), console.log(n.cyan(` git diff
148
- `)), console.log(n.yellow("To revert all changes:")), console.log(n.cyan(` git checkout -- .
149
- `))) : (console.log(n.green(`
183
+ `)), console.log(e.cyan("Changes made:")), console.log(e.cyan(" - Updated package versions")), console.log(e.cyan(" - Generated/updated CHANGELOG.md files")), console.log(e.cyan(" - npmTag will be determined from git tag in CI")), console.log(e.cyan(` - Updated yarn.lock with new package versions
184
+ `)), console.log(e.yellow("No git operations performed. Review changes with:")), console.log(e.cyan(` git diff
185
+ `)), console.log(e.yellow("To revert all changes:")), console.log(e.cyan(` git checkout -- .
186
+ `))) : (console.log(e.green(`
150
187
  ✅ Release completed successfully!
151
- `)), console.log(n.cyan(`
152
- ℹ️ npmTag will be automatically determined from git tag in CI`)), console.log(n.cyan(` GitHub Actions will publish with the correct tag based on the git tag
188
+ `)), console.log(e.cyan(`
189
+ ℹ️ npmTag will be automatically determined from git tag in CI`)), console.log(e.cyan(` GitHub Actions will publish with the correct tag based on the git tag
153
190
  `)));
154
191
  };
155
- async function L(s) {
156
- console.log(n.cyan(`
192
+ async function T(s) {
193
+ console.log(e.cyan(`
157
194
  Enhancing changelogs...
158
195
  `));
159
- for (const g of s) {
160
- if (g === ".") continue;
161
- const l = S.join(g, "CHANGELOG.md");
162
- if (!j(l)) continue;
163
- let o = P(l, "utf-8");
164
- o = o.replace(/^# CHANGELOG\s*\n/gm, ""), o = o.replace(/^# Change Log\s*\n/gm, ""), o = o.replace(/^All notable changes to this (project|package) will be documented in this file\.\s*\n/gm, ""), o = o.replace(
196
+ for (const u of s) {
197
+ if (u === ".") continue;
198
+ const p = S.join(u, "CHANGELOG.md");
199
+ if (!E(p)) continue;
200
+ let o = V(p, "utf-8");
201
+ o = o.replace(/^# CHANGELOG\s*\n/gm, ""), o = o.replace(/^# Change Log\s*\n/gm, ""), o = o.replace(
202
+ /^All notable changes to this (project|package) will be documented in this file\.\s*\n/gm,
203
+ ""
204
+ ), o = o.replace(
165
205
  /^See \[Conventional Commits\]\(https:\/\/conventionalcommits\.org\) for commit guidelines\.\s*\n/gm,
166
206
  ""
167
207
  ), o = o.replace(/\n{3,}/g, `
@@ -173,92 +213,92 @@ Enhancing changelogs...
173
213
 
174
214
  $2`
175
215
  ), o = o.trim() + `
176
- `, V(l, o, "utf-8");
216
+ `, A(p, o, "utf-8");
177
217
  }
178
218
  }
179
219
  async function $(s) {
180
- const g = s.find((k) => k !== ".");
181
- if (!g) return;
182
- const { pkg: l } = N(g), o = l.version, d = "package.json", r = JSON.parse(P(d, "utf-8"));
183
- r.version !== o && (r.version = o, V(d, JSON.stringify(r, null, 2) + `
184
- `, "utf-8"), console.log(n.gray(` Updated root package.json version: ${o}`)));
220
+ const u = s.find((N) => N !== ".");
221
+ if (!u) return;
222
+ const { pkg: p } = C(u), o = p.version, v = "package.json", r = JSON.parse(V(v, "utf-8"));
223
+ r.version !== o && (r.version = o, A(v, JSON.stringify(r, null, 2) + `
224
+ `, "utf-8"), console.log(e.gray(` Updated root package.json version: ${o}`)));
185
225
  }
186
- async function D(s) {
187
- console.log(n.cyan(`
226
+ async function F(s) {
227
+ console.log(e.cyan(`
188
228
  Generating root CHANGELOG with package grouping...
189
229
  `));
190
- const g = "CHANGELOG.md", l = {
230
+ const u = "CHANGELOG.md", p = {
191
231
  framework: "VC-Shell Framework (@vc-shell/framework)",
192
232
  "cli/api-client": "API Client Generator (@vc-shell/api-client-generator)",
193
233
  "cli/create-vc-app": "Create VC App (@vc-shell/create-vc-app)",
194
234
  "configs/release-config": "Release Config (@vc-shell/release-config)",
195
235
  "configs/vite-config": "Vite Config (@vc-shell/config-generator)",
196
236
  "configs/ts-config": "TypeScript Config (@vc-shell/ts-config)"
197
- }, o = {}, d = {};
198
- for (const p of s) {
199
- if (p === ".") continue;
200
- const f = S.join(p, "CHANGELOG.md"), u = l[p] || p;
201
- if (!j(f)) continue;
202
- const t = P(f, "utf-8").split(`
237
+ }, o = {}, v = {};
238
+ for (const f of s) {
239
+ if (f === ".") continue;
240
+ const m = S.join(f, "CHANGELOG.md"), h = p[f] || f;
241
+ if (!E(m)) continue;
242
+ const n = V(m, "utf-8").split(`
203
243
  `);
204
- let e = null, a = [];
205
- for (const i of t) {
244
+ let t = null, a = [];
245
+ for (const i of n) {
206
246
  const b = i.match(/^##\s+(?:\[)?([\d.a-z-]+)(?:\])?(?:\s+\([^)]+\))?/i);
207
247
  if (b) {
208
- if (e && a.length > 0) {
209
- const h = a.join(`
248
+ if (t && a.length > 0) {
249
+ const G = a.join(`
210
250
  `).trim();
211
- o[e] || (o[e] = {}), o[e][u] = h;
251
+ o[t] || (o[t] = {}), o[t][h] = G;
212
252
  }
213
- e = b[1], a = [], d[e] || (d[e] = i.replace(/^##\s+/, ""));
214
- } else e && i.trim() !== "" && !i.startsWith("# CHANGELOG") && !i.startsWith("# Change Log") && !i.startsWith("All notable changes") && !i.startsWith("See [Conventional Commits]") && a.push(i);
253
+ t = b[1], a = [], v[t] || (v[t] = i.replace(/^##\s+/, ""));
254
+ } else t && i.trim() !== "" && !i.startsWith("# CHANGELOG") && !i.startsWith("# Change Log") && !i.startsWith("All notable changes") && !i.startsWith("See [Conventional Commits]") && a.push(i);
215
255
  }
216
- if (e && a.length > 0) {
256
+ if (t && a.length > 0) {
217
257
  const i = a.join(`
218
258
  `).trim();
219
- o[e] || (o[e] = {}), o[e][u] = i;
259
+ o[t] || (o[t] = {}), o[t][h] = i;
220
260
  }
221
261
  }
222
262
  let r = "";
223
- const k = Object.keys(o).sort((p, f) => {
224
- const u = p.split(/[.-]/).map((t) => isNaN(parseInt(t)) ? t : parseInt(t)), v = f.split(/[.-]/).map((t) => isNaN(parseInt(t)) ? t : parseInt(t));
225
- for (let t = 0; t < Math.max(u.length, v.length); t++) {
226
- const e = u[t] ?? 0, a = v[t] ?? 0;
227
- if (e !== a)
228
- return typeof e == "number" && typeof a == "number" ? a - e : String(a).localeCompare(String(e));
263
+ const N = Object.keys(o).sort((f, m) => {
264
+ const h = f.split(/[.-]/).map((n) => isNaN(parseInt(n)) ? n : parseInt(n)), w = m.split(/[.-]/).map((n) => isNaN(parseInt(n)) ? n : parseInt(n));
265
+ for (let n = 0; n < Math.max(h.length, w.length); n++) {
266
+ const t = h[n] ?? 0, a = w[n] ?? 0;
267
+ if (t !== a)
268
+ return typeof t == "number" && typeof a == "number" ? a - t : String(a).localeCompare(String(t));
229
269
  }
230
270
  return 0;
231
271
  });
232
- for (const p of k) {
233
- const f = o[p], u = Object.values(f).some((e) => !e || !e.trim() ? !1 : e.replace(/\*\*Note:\*\*\s+Version bump only[^\n]*/gi, "").trim().length > 0), v = d[p] || p;
234
- if (r += `## ${v}
272
+ for (const f of N) {
273
+ const m = o[f], h = Object.values(m).some((t) => !t || !t.trim() ? !1 : t.replace(/\*\*Note:\*\*\s+Version bump only[^\n]*/gi, "").trim().length > 0), w = v[f] || f;
274
+ if (r += `## ${w}
235
275
 
236
- `, !u) {
276
+ `, !h) {
237
277
  r += `**Note:** Version bump only for package
238
278
 
239
279
  `;
240
280
  continue;
241
281
  }
242
- let t = !1;
243
- for (const e of s) {
244
- if (e === ".") continue;
245
- const a = l[e] || e, i = f[a];
246
- i && i.trim() && i.replace(/\*\*Note:\*\*\s+Version bump only[^\n]*/gi, "").trim().length > 0 && (t = !0, r += `### ${a}
282
+ let n = !1;
283
+ for (const t of s) {
284
+ if (t === ".") continue;
285
+ const a = p[t] || t, i = m[a];
286
+ i && i.trim() && i.replace(/\*\*Note:\*\*\s+Version bump only[^\n]*/gi, "").trim().length > 0 && (n = !0, r += `### ${a}
247
287
 
248
288
  `, r += `${i}
249
289
 
250
290
  `);
251
291
  }
252
- t || (r += `**Note:** Version bump only for package
292
+ n || (r += `**Note:** Version bump only for package
253
293
 
254
294
  `);
255
295
  }
256
296
  r = r.replace(/\n{3,}/g, `
257
297
 
258
- `), V(g, r, "utf-8"), console.log(n.green(" ✓ Generated root CHANGELOG.md with package grouping"));
298
+ `), A(u, r, "utf-8"), console.log(e.green(" ✓ Generated root CHANGELOG.md with package grouping"));
259
299
  }
260
300
  export {
261
- K as generateInitialChangelogs,
262
- Q as generateRootChangelog,
263
- z as release
301
+ ee as generateInitialChangelogs,
302
+ te as generateRootChangelog,
303
+ X as release
264
304
  };
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACpC,OAAO,EAAE,yBAAyB,EAAE,qBAAqB,EAAE,MAAM,uBAAuB,CAAC;AACzF,YAAY,EAAE,aAAa,EAAE,yBAAyB,EAAE,MAAM,uBAAuB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,yBAAyB,CAAC;AAClD,OAAO,EAAE,yBAAyB,EAAE,qBAAqB,EAAE,MAAM,qCAAqC,CAAC;AACvG,YAAY,EAAE,aAAa,EAAE,yBAAyB,EAAE,MAAM,qCAAqC,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"release.d.ts","sourceRoot":"","sources":["../../src/release.ts"],"names":[],"mappings":"AASA;;;;;;;;;GASG;AACH,eAAO,MAAM,OAAO,GAAU,mEAM3B;IACD,QAAQ,EAAE,MAAM,EAAE,CAAC;IACnB;;;;;;OAMG;IACH,WAAW,CAAC,EAAE,CAAC,OAAO,EAAE,MAAM,KAAK,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IACxD,8DAA8D;IAC9D,WAAW,CAAC,EAAE,CAAC,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,KAAK,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IACzE,2DAA2D;IAC3D,iBAAiB,CAAC,EAAE,CAAC,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,aAAa,CAAC,EAAE,MAAM,KAAK,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IACvG,8DAA8D;IAC9D,KAAK,CAAC,EAAE,CAAC,OAAO,EAAE,MAAM,KAAK,MAAM,CAAC;CACrC,kBAqOA,CAAC"}
1
+ {"version":3,"file":"release.d.ts","sourceRoot":"","sources":["../../src/release.ts"],"names":[],"mappings":"AASA;;;;;;;;;GASG;AACH,eAAO,MAAM,OAAO,GAAU,mEAM3B;IACD,QAAQ,EAAE,MAAM,EAAE,CAAC;IACnB;;;;;;OAMG;IACH,WAAW,CAAC,EAAE,CAAC,OAAO,EAAE,MAAM,KAAK,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IACxD,8DAA8D;IAC9D,WAAW,CAAC,EAAE,CAAC,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,KAAK,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IACzE,2DAA2D;IAC3D,iBAAiB,CAAC,EAAE,CAAC,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,aAAa,CAAC,EAAE,MAAM,KAAK,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IACvG,8DAA8D;IAC9D,KAAK,CAAC,EAAE,CAAC,OAAO,EAAE,MAAM,KAAK,MAAM,CAAC;CACrC,kBAwRA,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vc-shell/release-config",
3
- "version": "1.2.4-beta.2",
3
+ "version": "1.2.4-beta.3",
4
4
  "type": "module",
5
5
  "main": "dist/release-config.js",
6
6
  "types": "./dist/src/index.d.ts",
@@ -34,5 +34,5 @@
34
34
  "access": "public",
35
35
  "registry": "https://registry.npmjs.org/"
36
36
  },
37
- "gitHead": "d4cf91ea30b40f13cc7ca13e7d11c8da13459175"
37
+ "gitHead": "d42e7a822a2b2c7a5f89bf83d97babc2e4b3fa07"
38
38
  }