@walkeros/cli 3.2.0-next-1775064795590 → 3.2.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/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # @walkeros/cli
2
2
 
3
- ## 3.2.0-next-1775064795590
3
+ ## 3.2.0
4
4
 
5
5
  ### Minor Changes
6
6
 
@@ -63,8 +63,8 @@
63
63
  - Updated dependencies [f007c9f]
64
64
  - Updated dependencies [bf2dc5b]
65
65
  - Updated dependencies [da0b640]
66
- - @walkeros/core@3.2.0-next-1775064795590
67
- - @walkeros/server-core@3.2.0-next-1775064795590
66
+ - @walkeros/core@3.2.0
67
+ - @walkeros/server-core@3.2.0
68
68
 
69
69
  ## 3.1.1
70
70
 
package/dist/cli.js CHANGED
@@ -14566,11 +14566,11 @@ function W(e3, n4, t) {
14566
14566
  }
14567
14567
  if (r2.sources) for (const [n5, i3] of Object.entries(r2.sources)) {
14568
14568
  const a2 = I(e3.variables, o2.variables, i3.variables), c2 = z2(e3.definitions, o2.definitions, i3.definitions), l3 = q(i3.config, a2, c2, t, s2), d3 = q(i3.env, a2, c2, t, s2), u3 = J(i3.package, i3.code, r2.packages), p2 = "string" == typeof i3.code || "object" == typeof i3.code ? i3.code : void 0, f2 = u3 || p2;
14569
- r2.sources[n5] = { package: i3.package, config: l3, env: d3, primary: i3.primary, variables: i3.variables, definitions: i3.definitions, next: i3.next, cache: i3.cache, code: f2 };
14569
+ r2.sources[n5] = { package: i3.package, config: l3, env: d3, primary: i3.primary, variables: i3.variables, definitions: i3.definitions, before: i3.before, next: i3.next, cache: i3.cache, code: f2 };
14570
14570
  }
14571
14571
  if (r2.destinations) for (const [n5, i3] of Object.entries(r2.destinations)) {
14572
14572
  const a2 = I(e3.variables, o2.variables, i3.variables), c2 = z2(e3.definitions, o2.definitions, i3.definitions), l3 = q(i3.config, a2, c2, t, s2), d3 = q(i3.env, a2, c2, t, s2), u3 = J(i3.package, i3.code, r2.packages), p2 = "string" == typeof i3.code || "object" == typeof i3.code ? i3.code : void 0, f2 = u3 || p2;
14573
- r2.destinations[n5] = { package: i3.package, config: l3, env: d3, variables: i3.variables, definitions: i3.definitions, before: i3.before, cache: i3.cache, code: f2 };
14573
+ r2.destinations[n5] = { package: i3.package, config: l3, env: d3, variables: i3.variables, definitions: i3.definitions, before: i3.before, next: i3.next, cache: i3.cache, code: f2 };
14574
14574
  }
14575
14575
  if (r2.stores) for (const [n5, i3] of Object.entries(r2.stores)) {
14576
14576
  const a2 = I(e3.variables, o2.variables, i3.variables), c2 = z2(e3.definitions, o2.definitions, i3.definitions), l3 = q(i3.config, a2, c2, t, s2), d3 = q(i3.env, a2, c2, t, s2), u3 = J(i3.package, i3.code, r2.packages), p2 = "string" == typeof i3.code || "object" == typeof i3.code ? i3.code : void 0, f2 = u3 || p2;
@@ -19038,15 +19038,7 @@ async function pushCommand(options) {
19038
19038
  const duration3 = Date.now() - startTime;
19039
19039
  let output;
19040
19040
  if (options.json) {
19041
- output = JSON.stringify(
19042
- {
19043
- success: result.success,
19044
- event: result.elbResult,
19045
- duration: duration3
19046
- },
19047
- null,
19048
- 2
19049
- );
19041
+ output = JSON.stringify({ ...result, duration: duration3 }, null, 2);
19050
19042
  } else {
19051
19043
  const lines = [];
19052
19044
  if (result.success) {
package/dist/index.js CHANGED
@@ -3735,15 +3735,7 @@ async function pushCommand(options) {
3735
3735
  const duration = Date.now() - startTime;
3736
3736
  let output;
3737
3737
  if (options.json) {
3738
- output = JSON.stringify(
3739
- {
3740
- success: result.success,
3741
- event: result.elbResult,
3742
- duration
3743
- },
3744
- null,
3745
- 2
3746
- );
3738
+ output = JSON.stringify({ ...result, duration }, null, 2);
3747
3739
  } else {
3748
3740
  const lines = [];
3749
3741
  if (result.success) {